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