C:
char c = '\u0188';
printf("%c\n", c); // Output: ƈ
JavaScript:
const char = '\u0188';
console.log(char); // Output: ƈ
Java:
char c = '\u0188';
System.out.println(c); // Output: ƈ
JSON:
{"text": "\u0188"} // Value: ƈ
Python:
char = '\u0188'
print(char) # Output: ƈ
Perl:
my $char = "\x{0188}";
print $char; # Output: ƈ
PHP:
$char = "\x{0188}";
echo $char; // Output: ƈ
Ruby:
char = "\u{0188}"
puts char # Output: ƈ
Rust:
let c = '\u{188}';
println!("{}", c); // Output: ƈ
Go:
char := '\u0188'
fmt.Printf("%c\n", char) // Output: ƈ
CSS:
/* CSS content property */
.element::before {
content: "\000188"; /* 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%88
MD5:
ae68af38fbdcf96e879108c62907121c
SHA1:
bc5d2dd5133f4705c57b967b494b1f7dae47974c
Base64:
xog=