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