C:
char c = '\u116A';
printf("%c\n", c); // Output: ᅪ
JavaScript:
const char = '\u116A';
console.log(char); // Output: ᅪ
Java:
char c = '\u116A';
System.out.println(c); // Output: ᅪ
JSON:
{"text": "\u116A"} // Value: ᅪ
Python:
char = '\u116A'
print(char) # Output: ᅪ
Perl:
my $char = "\x{116A}";
print $char; # Output: ᅪ
PHP:
$char = "\x{116A}";
echo $char; // Output: ᅪ
Ruby:
char = "\u{116A}"
puts char # Output: ᅪ
Rust:
let c = '\u{116A}';
println!("{}", c); // Output: ᅪ
Go:
char := '\u116A'
fmt.Printf("%c\n", char) // Output: ᅪ
CSS:
/* CSS content property */
.element::before {
content: "\00116A"; /* 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%AA
MD5:
0413a2cda3c53034bec19d3dd6d4fb17
SHA1:
80bcdb3c1786453137d5ab30d2ed35fc55eb428d
Base64:
4YWq