C:
char c = '\u0249';
printf("%c\n", c); // Output: ɉ
JavaScript:
const char = '\u0249';
console.log(char); // Output: ɉ
Java:
char c = '\u0249';
System.out.println(c); // Output: ɉ
JSON:
{"text": "\u0249"} // Value: ɉ
Python:
char = '\u0249'
print(char) # Output: ɉ
Perl:
my $char = "\x{0249}";
print $char; # Output: ɉ
PHP:
$char = "\x{0249}";
echo $char; // Output: ɉ
Ruby:
char = "\u{0249}"
puts char # Output: ɉ
Rust:
let c = '\u{249}';
println!("{}", c); // Output: ɉ
Go:
char := '\u0249'
fmt.Printf("%c\n", char) // Output: ɉ
CSS:
/* CSS content property */
.element::before {
content: "\000249"; /* 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%89
MD5:
739c0cd253ef8e1c54bd21dca5483df1
SHA1:
b7f42ce04015d18627da03800651946595a1dbc9
Base64:
yYk=