C:
char c = '\u1040';
printf("%c\n", c); // Output: ၀
JavaScript:
const char = '\u1040';
console.log(char); // Output: ၀
Java:
char c = '\u1040';
System.out.println(c); // Output: ၀
JSON:
{"text": "\u1040"} // Value: ၀
Python:
char = '\u1040'
print(char) # Output: ၀
Perl:
my $char = "\x{1040}";
print $char; # Output: ၀
PHP:
$char = "\x{1040}";
echo $char; // Output: ၀
Ruby:
char = "\u{1040}"
puts char # Output: ၀
Rust:
let c = '\u{1040}';
println!("{}", c); // Output: ၀
Go:
char := '\u1040'
fmt.Printf("%c\n", char) // Output: ၀
CSS:
/* CSS content property */
.element::before {
content: "\001040"; /* 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%81%80
MD5:
a78b7b5a2b69b0ebb26fc143f52a55db
SHA1:
aa8d9bb5d4f1abd14b3d8c4517dfe1e2420faa1e
Base64:
4YGA