C:
char c = '\u1049';
printf("%c\n", c); // Output: ၉
JavaScript:
const char = '\u1049';
console.log(char); // Output: ၉
Java:
char c = '\u1049';
System.out.println(c); // Output: ၉
JSON:
{"text": "\u1049"} // Value: ၉
Python:
char = '\u1049'
print(char) # Output: ၉
Perl:
my $char = "\x{1049}";
print $char; # Output: ၉
PHP:
$char = "\x{1049}";
echo $char; // Output: ၉
Ruby:
char = "\u{1049}"
puts char # Output: ၉
Rust:
let c = '\u{1049}';
println!("{}", c); // Output: ၉
Go:
char := '\u1049'
fmt.Printf("%c\n", char) // Output: ၉
CSS:
/* CSS content property */
.element::before {
content: "\001049"; /* 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%89
MD5:
32dbaebfef3bbb03028cd0c8f598e76c
SHA1:
074ad3c2417312d3868cac1a6b7a54da7eb0f8e9
Base64:
4YGJ