C:
char c = '\u0253';
printf("%c\n", c); // Output: ɓ
JavaScript:
const char = '\u0253';
console.log(char); // Output: ɓ
Java:
char c = '\u0253';
System.out.println(c); // Output: ɓ
JSON:
{"text": "\u0253"} // Value: ɓ
Python:
char = '\u0253'
print(char) # Output: ɓ
Perl:
my $char = "\x{0253}";
print $char; # Output: ɓ
PHP:
$char = "\x{0253}";
echo $char; // Output: ɓ
Ruby:
char = "\u{0253}"
puts char # Output: ɓ
Rust:
let c = '\u{253}';
println!("{}", c); // Output: ɓ
Go:
char := '\u0253'
fmt.Printf("%c\n", char) // Output: ɓ
CSS:
/* CSS content property */
.element::before {
content: "\000253"; /* 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%93
MD5:
cca54e6f1da6a26ba574c583fe22d55e
SHA1:
4752c62cba35a9b83f46ffe9b7455711a16f5639
Base64:
yZM=