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