Last active
April 29, 2024 11:47
-
-
Save aaabramov/90ec8a3ddfe7ac06ae387a00d02ae555 to your computer and use it in GitHub Desktop.
Drawing tables (boxes) using UTF-8 symbols
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
┏━━━━━━┳━━━━━━┓ ┏━━━━━━┯━━━━━━┓ ┌──────┬──────┐ ╔══════╦══════╗ | |
┃ col1 ┃ col2 ┃ ┃ col1 │ col2 ┃ │ col1 │ col2 │ ║ col1 ║ col2 ║ | |
┣━━━━━━╋━━━━━━┫ ┠──────┼──────┨ ├──────┼──────┤ ╠══════╬══════╣ | |
┃ val1 ┃ val2 ┃ ┃ val1 │ val2 ┃ │ val1 │ val2 │ ║ val1 ║ val2 ║ | |
┗━━━━━━┻━━━━━━┛ ┗━━━━━━┷━━━━━━┛ └──────┴──────┘ ╚══════╩══════╝ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
─ | |
━ | |
│ | |
┃ | |
┄ | |
┅ | |
┆ | |
┇ | |
┈ | |
┉ | |
┊ | |
┋ | |
┌ | |
┍ | |
┎ | |
┏ | |
┐ | |
┑ | |
┒ | |
┓ | |
└ | |
┕ | |
┖ | |
┗ | |
┘ | |
┙ | |
┚ | |
┛ | |
├ | |
┝ | |
┞ | |
┟ | |
┠ | |
┡ | |
┢ | |
┣ | |
┤ | |
┥ | |
┦ | |
┧ | |
┨ | |
┩ | |
┪ | |
┫ | |
┬ | |
┭ | |
┮ | |
┯ | |
┰ | |
┱ | |
┲ | |
┳ | |
┴ | |
┵ | |
┶ | |
┷ | |
┸ | |
┹ | |
┺ | |
┻ | |
┼ | |
┽ | |
┾ | |
┿ | |
╀ | |
╁ | |
╂ | |
╃ | |
╄ | |
╅ | |
╆ | |
╇ | |
╈ | |
╉ | |
╊ | |
╋ | |
╌ | |
╍ | |
╎ | |
╏ | |
═ | |
║ | |
╒ | |
╓ | |
╔ | |
╕ | |
╖ | |
╗ | |
╘ | |
╙ | |
╚ | |
╛ | |
╜ | |
╝ | |
╞ | |
╟ | |
╠ | |
╡ | |
╢ | |
╣ | |
╤ | |
╥ | |
╦ | |
╧ | |
╨ | |
╩ | |
╪ | |
╫ | |
╬ | |
╭ | |
╮ | |
╯ | |
╰ | |
╱ | |
╲ | |
╳ | |
╴ | |
╵ | |
╶ | |
╷ | |
╸ | |
╹ | |
╺ | |
╻ | |
╼ | |
╽ | |
╾ | |
╿ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. Python's PrettyTable is also something I've been looking at.