C:
char c = '\u1045';
printf("%c\n", c); // Output: ၅
JavaScript:
const char = '\u1045';
console.log(char); // Output: ၅
Java:
char c = '\u1045';
System.out.println(c); // Output: ၅
JSON:
{"text": "\u1045"} // Value: ၅
Python:
char = '\u1045'
print(char) # Output: ၅
Perl:
my $char = "\x{1045}";
print $char; # Output: ၅
PHP:
$char = "\x{1045}";
echo $char; // Output: ၅
Ruby:
char = "\u{1045}"
puts char # Output: ၅
Rust:
let c = '\u{1045}';
println!("{}", c); // Output: ၅
Go:
char := '\u1045'
fmt.Printf("%c\n", char) // Output: ၅
CSS:
/* CSS content property */
.element::before {
content: "\001045"; /* 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%85
MD5:
c68ea4723203b26b4779f2f37c944b5a
SHA1:
3af87398141396378ffa76c524daae7e72dc3f2d
Base64:
4YGF