C:
char c = '\u0242';
printf("%c\n", c); // Output: ɂ
JavaScript:
const char = '\u0242';
console.log(char); // Output: ɂ
Java:
char c = '\u0242';
System.out.println(c); // Output: ɂ
JSON:
{"text": "\u0242"} // Value: ɂ
Python:
char = '\u0242'
print(char) # Output: ɂ
Perl:
my $char = "\x{0242}";
print $char; # Output: ɂ
PHP:
$char = "\x{0242}";
echo $char; // Output: ɂ
Ruby:
char = "\u{0242}"
puts char # Output: ɂ
Rust:
let c = '\u{242}';
println!("{}", c); // Output: ɂ
Go:
char := '\u0242'
fmt.Printf("%c\n", char) // Output: ɂ
CSS:
/* CSS content property */
.element::before {
content: "\000242"; /* 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=%C9%82
MD5:
451ef67e614f3d3189b69fcdac9562b9
SHA1:
6db97c89e5eaa62e39f0d09e1c4d4ec33795ffdb
Base64:
yYI=