C:
char c = '\u1158';
printf("%c\n", c); // Output: ᅘ
JavaScript:
const char = '\u1158';
console.log(char); // Output: ᅘ
Java:
char c = '\u1158';
System.out.println(c); // Output: ᅘ
JSON:
{"text": "\u1158"} // Value: ᅘ
Python:
char = '\u1158'
print(char) # Output: ᅘ
Perl:
my $char = "\x{1158}";
print $char; # Output: ᅘ
PHP:
$char = "\x{1158}";
echo $char; // Output: ᅘ
Ruby:
char = "\u{1158}"
puts char # Output: ᅘ
Rust:
let c = '\u{1158}';
println!("{}", c); // Output: ᅘ
Go:
char := '\u1158'
fmt.Printf("%c\n", char) // Output: ᅘ
CSS:
/* CSS content property */
.element::before {
content: "\001158"; /* 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%85%98
MD5:
1e4b57bd191e38b296e88c720291459d
SHA1:
d6abc2b72833ce62f7f27ecad905b788f0113368
Base64:
4YWY