C:
char c = '\u0274';
printf("%c\n", c); // Output: ɴ
JavaScript:
const char = '\u0274';
console.log(char); // Output: ɴ
Java:
char c = '\u0274';
System.out.println(c); // Output: ɴ
JSON:
{"text": "\u0274"} // Value: ɴ
Python:
char = '\u0274'
print(char) # Output: ɴ
Perl:
my $char = "\x{0274}";
print $char; # Output: ɴ
PHP:
$char = "\x{0274}";
echo $char; // Output: ɴ
Ruby:
char = "\u{0274}"
puts char # Output: ɴ
Rust:
let c = '\u{274}';
println!("{}", c); // Output: ɴ
Go:
char := '\u0274'
fmt.Printf("%c\n", char) // Output: ɴ
CSS:
/* CSS content property */
.element::before {
content: "\000274"; /* 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%B4
MD5:
a32ad8bcf51413abd0babcaebc7e7ba7
SHA1:
fa28ab4e193098e90dcf079836805eb54b492e0e
Base64:
ybQ=