C:
char c = '\u1654';
printf("%c\n", c); // Output: ᙔ
JavaScript:
const char = '\u1654';
console.log(char); // Output: ᙔ
Java:
char c = '\u1654';
System.out.println(c); // Output: ᙔ
JSON:
{"text": "\u1654"} // Value: ᙔ
Python:
char = '\u1654'
print(char) # Output: ᙔ
Perl:
my $char = "\x{1654}";
print $char; # Output: ᙔ
PHP:
$char = "\x{1654}";
echo $char; // Output: ᙔ
Ruby:
char = "\u{1654}"
puts char # Output: ᙔ
Rust:
let c = '\u{1654}';
println!("{}", c); // Output: ᙔ
Go:
char := '\u1654'
fmt.Printf("%c\n", char) // Output: ᙔ
CSS:
/* CSS content property */
.element::before {
content: "\001654"; /* 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%94
MD5:
9186425e86b1bafac0e416629e94a19f
SHA1:
39d6de334ff527c64890ea275bd52dcb8e567d2e
Base64:
4ZmU