C:
char c = '\u0252';
printf("%c\n", c); // Output: ɒ
JavaScript:
const char = '\u0252';
console.log(char); // Output: ɒ
Java:
char c = '\u0252';
System.out.println(c); // Output: ɒ
JSON:
{"text": "\u0252"} // Value: ɒ
Python:
char = '\u0252'
print(char) # Output: ɒ
Perl:
my $char = "\x{0252}";
print $char; # Output: ɒ
PHP:
$char = "\x{0252}";
echo $char; // Output: ɒ
Ruby:
char = "\u{0252}"
puts char # Output: ɒ
Rust:
let c = '\u{252}';
println!("{}", c); // Output: ɒ
Go:
char := '\u0252'
fmt.Printf("%c\n", char) // Output: ɒ
CSS:
/* CSS content property */
.element::before {
content: "\000252"; /* 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%92
MD5:
630477f934fd58b7db218cb5b37a6f82
SHA1:
e68f656296091e06672e00acd47b876925a8bec2
Base64:
yZI=