C:
char c = '\u1052';
printf("%c\n", c); // Output: ၒ
JavaScript:
const char = '\u1052';
console.log(char); // Output: ၒ
Java:
char c = '\u1052';
System.out.println(c); // Output: ၒ
JSON:
{"text": "\u1052"} // Value: ၒ
Python:
char = '\u1052'
print(char) # Output: ၒ
Perl:
my $char = "\x{1052}";
print $char; # Output: ၒ
PHP:
$char = "\x{1052}";
echo $char; // Output: ၒ
Ruby:
char = "\u{1052}"
puts char # Output: ၒ
Rust:
let c = '\u{1052}';
println!("{}", c); // Output: ၒ
Go:
char := '\u1052'
fmt.Printf("%c\n", char) // Output: ၒ
CSS:
/* CSS content property */
.element::before {
content: "\001052"; /* 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%92
MD5:
ecff4c14d984737b2ffe1840daa5a930
SHA1:
04a3a848b3419fabcc4c0e6528a1f82216a3832e
Base64:
4YGS