C:
char c = '\u0272';
printf("%c\n", c); // Output: ɲ
JavaScript:
const char = '\u0272';
console.log(char); // Output: ɲ
Java:
char c = '\u0272';
System.out.println(c); // Output: ɲ
JSON:
{"text": "\u0272"} // Value: ɲ
Python:
char = '\u0272'
print(char) # Output: ɲ
Perl:
my $char = "\x{0272}";
print $char; # Output: ɲ
PHP:
$char = "\x{0272}";
echo $char; // Output: ɲ
Ruby:
char = "\u{0272}"
puts char # Output: ɲ
Rust:
let c = '\u{272}';
println!("{}", c); // Output: ɲ
Go:
char := '\u0272'
fmt.Printf("%c\n", char) // Output: ɲ
CSS:
/* CSS content property */
.element::before {
content: "\000272"; /* 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%B2
MD5:
07d10853e5c0ed028a081206c7ef66f9
SHA1:
86358cd139780191db08d1b76224815f59d8f6d3
Base64:
ybI=