C:
char c = '\u0248';
printf("%c\n", c); // Output: Ɉ
JavaScript:
const char = '\u0248';
console.log(char); // Output: Ɉ
Java:
char c = '\u0248';
System.out.println(c); // Output: Ɉ
JSON:
{"text": "\u0248"} // Value: Ɉ
Python:
char = '\u0248'
print(char) # Output: Ɉ
Perl:
my $char = "\x{0248}";
print $char; # Output: Ɉ
PHP:
$char = "\x{0248}";
echo $char; // Output: Ɉ
Ruby:
char = "\u{0248}"
puts char # Output: Ɉ
Rust:
let c = '\u{248}';
println!("{}", c); // Output: Ɉ
Go:
char := '\u0248'
fmt.Printf("%c\n", char) // Output: Ɉ
CSS:
/* CSS content property */
.element::before {
content: "\000248"; /* 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%88
MD5:
1743ea95a46b913223dc389c07c13e20
SHA1:
5a76b937d5317468b2ade9395e6149565abefca4
Base64:
yYg=