C:
char c = '\u1659';
printf("%c\n", c); // Output: ᙙ
JavaScript:
const char = '\u1659';
console.log(char); // Output: ᙙ
Java:
char c = '\u1659';
System.out.println(c); // Output: ᙙ
JSON:
{"text": "\u1659"} // Value: ᙙ
Python:
char = '\u1659'
print(char) # Output: ᙙ
Perl:
my $char = "\x{1659}";
print $char; # Output: ᙙ
PHP:
$char = "\x{1659}";
echo $char; // Output: ᙙ
Ruby:
char = "\u{1659}"
puts char # Output: ᙙ
Rust:
let c = '\u{1659}';
println!("{}", c); // Output: ᙙ
Go:
char := '\u1659'
fmt.Printf("%c\n", char) // Output: ᙙ
CSS:
/* CSS content property */
.element::before {
content: "\001659"; /* 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%99
MD5:
27cd6f3b67656b086ee388932945952f
SHA1:
da0858414fdb8f1937fafdeba432cbc9eaa39632
Base64:
4ZmZ