C:
char c = '\u1609';
printf("%c\n", c); // Output: ᘉ
JavaScript:
const char = '\u1609';
console.log(char); // Output: ᘉ
Java:
char c = '\u1609';
System.out.println(c); // Output: ᘉ
JSON:
{"text": "\u1609"} // Value: ᘉ
Python:
char = '\u1609'
print(char) # Output: ᘉ
Perl:
my $char = "\x{1609}";
print $char; # Output: ᘉ
PHP:
$char = "\x{1609}";
echo $char; // Output: ᘉ
Ruby:
char = "\u{1609}"
puts char # Output: ᘉ
Rust:
let c = '\u{1609}';
println!("{}", c); // Output: ᘉ
Go:
char := '\u1609'
fmt.Printf("%c\n", char) // Output: ᘉ
CSS:
/* CSS content property */
.element::before {
content: "\001609"; /* 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%98%89
MD5:
9c308f1fbeaa60797f2a59dc8a218134
SHA1:
f0dadca4c1f9b26e86670c2d7c4f08864df25570
Base64:
4ZiJ