C:
char c = '\u104C';
printf("%c\n", c); // Output: ၌
JavaScript:
const char = '\u104C';
console.log(char); // Output: ၌
Java:
char c = '\u104C';
System.out.println(c); // Output: ၌
JSON:
{"text": "\u104C"} // Value: ၌
Python:
char = '\u104C'
print(char) # Output: ၌
Perl:
my $char = "\x{104C}";
print $char; # Output: ၌
PHP:
$char = "\x{104C}";
echo $char; // Output: ၌
Ruby:
char = "\u{104C}"
puts char # Output: ၌
Rust:
let c = '\u{104C}';
println!("{}", c); // Output: ၌
Go:
char := '\u104C'
fmt.Printf("%c\n", char) // Output: ၌
CSS:
/* CSS content property */
.element::before {
content: "\00104C"; /* 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%8C
MD5:
f6d4447e1ec4f0090e47a05bbcc5c00a
SHA1:
a7a0651ffcb0c52ad0afd5901548fadd2c0d681f
Base64:
4YGM