C:
char c = '\u1154';
printf("%c\n", c); // Output: ᅔ
JavaScript:
const char = '\u1154';
console.log(char); // Output: ᅔ
Java:
char c = '\u1154';
System.out.println(c); // Output: ᅔ
JSON:
{"text": "\u1154"} // Value: ᅔ
Python:
char = '\u1154'
print(char) # Output: ᅔ
Perl:
my $char = "\x{1154}";
print $char; # Output: ᅔ
PHP:
$char = "\x{1154}";
echo $char; // Output: ᅔ
Ruby:
char = "\u{1154}"
puts char # Output: ᅔ
Rust:
let c = '\u{1154}';
println!("{}", c); // Output: ᅔ
Go:
char := '\u1154'
fmt.Printf("%c\n", char) // Output: ᅔ
CSS:
/* CSS content property */
.element::before {
content: "\001154"; /* 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%94
MD5:
921e8425bd3a8febe284967b2e0a60cc
SHA1:
4010a3386ca4f286a6f5421d1d6aacdf859b01d8
Base64:
4YWU