C:
char c = '\u0273';
printf("%c\n", c); // Output: ɳ
JavaScript:
const char = '\u0273';
console.log(char); // Output: ɳ
Java:
char c = '\u0273';
System.out.println(c); // Output: ɳ
JSON:
{"text": "\u0273"} // Value: ɳ
Python:
char = '\u0273'
print(char) # Output: ɳ
Perl:
my $char = "\x{0273}";
print $char; # Output: ɳ
PHP:
$char = "\x{0273}";
echo $char; // Output: ɳ
Ruby:
char = "\u{0273}"
puts char # Output: ɳ
Rust:
let c = '\u{273}';
println!("{}", c); // Output: ɳ
Go:
char := '\u0273'
fmt.Printf("%c\n", char) // Output: ɳ
CSS:
/* CSS content property */
.element::before {
content: "\000273"; /* 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%B3
MD5:
9a6d9a1792a0b370b56784360e80b7cd
SHA1:
cebe66b26d5db90abedad71d95aad8b8bd26e696
Base64:
ybM=