C:
char c = '\u118A';
printf("%c\n", c); // Output: ᆊ
JavaScript:
const char = '\u118A';
console.log(char); // Output: ᆊ
Java:
char c = '\u118A';
System.out.println(c); // Output: ᆊ
JSON:
{"text": "\u118A"} // Value: ᆊ
Python:
char = '\u118A'
print(char) # Output: ᆊ
Perl:
my $char = "\x{118A}";
print $char; # Output: ᆊ
PHP:
$char = "\x{118A}";
echo $char; // Output: ᆊ
Ruby:
char = "\u{118A}"
puts char # Output: ᆊ
Rust:
let c = '\u{118A}';
println!("{}", c); // Output: ᆊ
Go:
char := '\u118A'
fmt.Printf("%c\n", char) // Output: ᆊ
CSS:
/* CSS content property */
.element::before {
content: "\00118A"; /* 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%86%8A
MD5:
31ad33e93f24187167750560cf19e3d6
SHA1:
6b218815c00a55a923cfdad5c9c70707516ca7f0
Base64:
4YaK