C:
char c = '\u1B88';
printf("%c\n", c); // Output: ᮈ
JavaScript:
const char = '\u1B88';
console.log(char); // Output: ᮈ
Java:
char c = '\u1B88';
System.out.println(c); // Output: ᮈ
JSON:
{"text": "\u1B88"} // Value: ᮈ
Python:
char = '\u1B88'
print(char) # Output: ᮈ
Perl:
my $char = "\x{1B88}";
print $char; # Output: ᮈ
PHP:
$char = "\x{1B88}";
echo $char; // Output: ᮈ
Ruby:
char = "\u{1B88}"
puts char # Output: ᮈ
Rust:
let c = '\u{1B88}';
println!("{}", c); // Output: ᮈ
Go:
char := '\u1B88'
fmt.Printf("%c\n", char) // Output: ᮈ
CSS:
/* CSS content property */
.element::before {
content: "\001B88"; /* 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=%E1%AE%88
MD5:
e45479210b3c09b7a97966a0a400a96e
SHA1:
fe41f8546fb4fd1d8851db197efcc8a4cc4bbe1e
Base64:
4a6I