C:
char c = '\u11AB';
printf("%c\n", c); // Output: ᆫ
JavaScript:
const char = '\u11AB';
console.log(char); // Output: ᆫ
Java:
char c = '\u11AB';
System.out.println(c); // Output: ᆫ
JSON:
{"text": "\u11AB"} // Value: ᆫ
Python:
char = '\u11AB'
print(char) # Output: ᆫ
Perl:
my $char = "\x{11AB}";
print $char; # Output: ᆫ
PHP:
$char = "\x{11AB}";
echo $char; // Output: ᆫ
Ruby:
char = "\u{11AB}"
puts char # Output: ᆫ
Rust:
let c = '\u{11AB}';
println!("{}", c); // Output: ᆫ
Go:
char := '\u11AB'
fmt.Printf("%c\n", char) // Output: ᆫ
CSS:
/* CSS content property */
.element::before {
content: "\0011AB"; /* 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%AB
MD5:
2a6df448274ecfdb3a761fa6d0f0e8dc
SHA1:
e27f2e140994c8b58e91fb8237ca95e9e5499df5
Base64:
4Yar