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