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