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