C:
char c = '\u1044';
printf("%c\n", c); // Output: ၄
JavaScript:
const char = '\u1044';
console.log(char); // Output: ၄
Java:
char c = '\u1044';
System.out.println(c); // Output: ၄
JSON:
{"text": "\u1044"} // Value: ၄
Python:
char = '\u1044'
print(char) # Output: ၄
Perl:
my $char = "\x{1044}";
print $char; # Output: ၄
PHP:
$char = "\x{1044}";
echo $char; // Output: ၄
Ruby:
char = "\u{1044}"
puts char # Output: ၄
Rust:
let c = '\u{1044}';
println!("{}", c); // Output: ၄
Go:
char := '\u1044'
fmt.Printf("%c\n", char) // Output: ၄
CSS:
/* CSS content property */
.element::before {
content: "\001044"; /* 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%84
MD5:
49f37abb25d3d29ec7a81aee4854cd48
SHA1:
9bf10d99ea5cfb37610c9fa2251815c85ac6bcbf
Base64:
4YGE