C:
char c = '\u1801';
printf("%c\n", c); // Output: ᠁
JavaScript:
const char = '\u1801';
console.log(char); // Output: ᠁
Java:
char c = '\u1801';
System.out.println(c); // Output: ᠁
JSON:
{"text": "\u1801"} // Value: ᠁
Python:
char = '\u1801'
print(char) # Output: ᠁
Perl:
my $char = "\x{1801}";
print $char; # Output: ᠁
PHP:
$char = "\x{1801}";
echo $char; // Output: ᠁
Ruby:
char = "\u{1801}"
puts char # Output: ᠁
Rust:
let c = '\u{1801}';
println!("{}", c); // Output: ᠁
Go:
char := '\u1801'
fmt.Printf("%c\n", char) // Output: ᠁
CSS:
/* CSS content property */
.element::before {
content: "\001801"; /* Display: ᠁ */
}
HTML Decimal:
<p>HTML decimal: ᠁</p> <!-- Display: ᠁ -->
HTML Hexadecimal:
<p>HTML hex: ᠁</p> <!-- Display: ᠁ -->
URL Encoding:
// ᠁ URL encoding
https://unicodefinder.com/search.php?query=%E1%A0%81
MD5:
b638f5dd77b419d86a19a8c823e463ce
SHA1:
0d28e4ab117b129d7e73d0826b546eeabb0cec34
Base64:
4aCB