C:
char c = '\u1668';
printf("%c\n", c); // Output: ᙨ
JavaScript:
const char = '\u1668';
console.log(char); // Output: ᙨ
Java:
char c = '\u1668';
System.out.println(c); // Output: ᙨ
JSON:
{"text": "\u1668"} // Value: ᙨ
Python:
char = '\u1668'
print(char) # Output: ᙨ
Perl:
my $char = "\x{1668}";
print $char; # Output: ᙨ
PHP:
$char = "\x{1668}";
echo $char; // Output: ᙨ
Ruby:
char = "\u{1668}"
puts char # Output: ᙨ
Rust:
let c = '\u{1668}';
println!("{}", c); // Output: ᙨ
Go:
char := '\u1668'
fmt.Printf("%c\n", char) // Output: ᙨ
CSS:
/* CSS content property */
.element::before {
content: "\001668"; /* 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%A8
MD5:
676d59baf2aa766a68a075dbce34f86f
SHA1:
edfddac456767e8f6d91da7fd2dbb0209698a759
Base64:
4Zmo