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