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