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