C:
char c = '\u1048';
printf("%c\n", c); // Output: ၈
JavaScript:
const char = '\u1048';
console.log(char); // Output: ၈
Java:
char c = '\u1048';
System.out.println(c); // Output: ၈
JSON:
{"text": "\u1048"} // Value: ၈
Python:
char = '\u1048'
print(char) # Output: ၈
Perl:
my $char = "\x{1048}";
print $char; # Output: ၈
PHP:
$char = "\x{1048}";
echo $char; // Output: ၈
Ruby:
char = "\u{1048}"
puts char # Output: ၈
Rust:
let c = '\u{1048}';
println!("{}", c); // Output: ၈
Go:
char := '\u1048'
fmt.Printf("%c\n", char) // Output: ၈
CSS:
/* CSS content property */
.element::before {
content: "\001048"; /* 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%88
MD5:
aa43aaaa884ea3b701f8352231a53bd3
SHA1:
7e404bceb1b7271fd890d048784789ccc708f3cd
Base64:
4YGI