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