C:
char c = '\u164B';
printf("%c\n", c); // Output: ᙋ
JavaScript:
const char = '\u164B';
console.log(char); // Output: ᙋ
Java:
char c = '\u164B';
System.out.println(c); // Output: ᙋ
JSON:
{"text": "\u164B"} // Value: ᙋ
Python:
char = '\u164B'
print(char) # Output: ᙋ
Perl:
my $char = "\x{164B}";
print $char; # Output: ᙋ
PHP:
$char = "\x{164B}";
echo $char; // Output: ᙋ
Ruby:
char = "\u{164B}"
puts char # Output: ᙋ
Rust:
let c = '\u{164B}';
println!("{}", c); // Output: ᙋ
Go:
char := '\u164B'
fmt.Printf("%c\n", char) // Output: ᙋ
CSS:
/* CSS content property */
.element::before {
content: "\00164B"; /* 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%8B
MD5:
a8bb7f13814dcdc1a3ed3c0d1dd02db4
SHA1:
d784ad94075c6f78b12e631a601639dacfe181a5
Base64:
4ZmL