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