C:
char c = '\u0196';
printf("%c\n", c); // Output: Ɩ
JavaScript:
const char = '\u0196';
console.log(char); // Output: Ɩ
Java:
char c = '\u0196';
System.out.println(c); // Output: Ɩ
JSON:
{"text": "\u0196"} // Value: Ɩ
Python:
char = '\u0196'
print(char) # Output: Ɩ
Perl:
my $char = "\x{0196}";
print $char; # Output: Ɩ
PHP:
$char = "\x{0196}";
echo $char; // Output: Ɩ
Ruby:
char = "\u{0196}"
puts char # Output: Ɩ
Rust:
let c = '\u{196}';
println!("{}", c); // Output: Ɩ
Go:
char := '\u0196'
fmt.Printf("%c\n", char) // Output: Ɩ
CSS:
/* CSS content property */
.element::before {
content: "\000196"; /* 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=%C6%96
MD5:
598821d235ebb4436d7e0fb67ae0aeeb
SHA1:
bef16354923ca7ef39f20127af039f37a535225e
Base64:
xpY=