C:
char c = '\u0292';
printf("%c\n", c); // Output: ʒ
JavaScript:
const char = '\u0292';
console.log(char); // Output: ʒ
Java:
char c = '\u0292';
System.out.println(c); // Output: ʒ
JSON:
{"text": "\u0292"} // Value: ʒ
Python:
char = '\u0292'
print(char) # Output: ʒ
Perl:
my $char = "\x{0292}";
print $char; # Output: ʒ
PHP:
$char = "\x{0292}";
echo $char; // Output: ʒ
Ruby:
char = "\u{0292}"
puts char # Output: ʒ
Rust:
let c = '\u{292}';
println!("{}", c); // Output: ʒ
Go:
char := '\u0292'
fmt.Printf("%c\n", char) // Output: ʒ
CSS:
/* CSS content property */
.element::before {
content: "\000292"; /* 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=%CA%92
MD5:
e6fb0c1aabd2bea88a0c433df855ca1b
SHA1:
3fadbe7e8762635016797a4cbc90c129a315cba3
Base64:
ypI=