C:
char c = '\u1667';
printf("%c\n", c); // Output: ᙧ
JavaScript:
const char = '\u1667';
console.log(char); // Output: ᙧ
Java:
char c = '\u1667';
System.out.println(c); // Output: ᙧ
JSON:
{"text": "\u1667"} // Value: ᙧ
Python:
char = '\u1667'
print(char) # Output: ᙧ
Perl:
my $char = "\x{1667}";
print $char; # Output: ᙧ
PHP:
$char = "\x{1667}";
echo $char; // Output: ᙧ
Ruby:
char = "\u{1667}"
puts char # Output: ᙧ
Rust:
let c = '\u{1667}';
println!("{}", c); // Output: ᙧ
Go:
char := '\u1667'
fmt.Printf("%c\n", char) // Output: ᙧ
CSS:
/* CSS content property */
.element::before {
content: "\001667"; /* 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%A7
MD5:
0c0b08bf1314fb8889d2082c74abb539
SHA1:
eb43a3faba639e4c330581bba67578e2502b9046
Base64:
4Zmn