Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Unicode Braille Patterns.
//Unicode Braille Patterns. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { Console.WriteLine("Basic (6 Dots)"); for (int i = 0x1; i <= 0x40; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } Console.WriteLine("\nExtended (8 Dots)"); for (int i = 0x41; i <= 0x100; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } } } }
run
|
edit
|
history
|
help
1
actions and tasks
caleb
test1
Math 10.8 added quad seq
Ejercicio bucles
System Convert
Check if string is palindrome
const
fq
List_methods