C:
char c = '\u1064';
printf("%c\n", c); // Output: ၤ
JavaScript:
const char = '\u1064';
console.log(char); // Output: ၤ
Java:
char c = '\u1064';
System.out.println(c); // Output: ၤ
JSON:
{"text": "\u1064"} // Value: ၤ
Python:
char = '\u1064'
print(char) # Output: ၤ
Perl:
my $char = "\x{1064}";
print $char; # Output: ၤ
PHP:
$char = "\x{1064}";
echo $char; // Output: ၤ
Ruby:
char = "\u{1064}"
puts char # Output: ၤ
Rust:
let c = '\u{1064}';
println!("{}", c); // Output: ၤ
Go:
char := '\u1064'
fmt.Printf("%c\n", char) // Output: ၤ
CSS:
/* CSS content property */
.element::before {
content: "\001064"; /* 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%A4
MD5:
f33b6081dd23655942d691f34674066b
SHA1:
6fb116615587861e000aa874ee4d9d08c196f16e
Base64:
4YGk