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