C:
char c = '\u1BB8';
printf("%c\n", c); // Output: ᮸
JavaScript:
const char = '\u1BB8';
console.log(char); // Output: ᮸
Java:
char c = '\u1BB8';
System.out.println(c); // Output: ᮸
JSON:
{"text": "\u1BB8"} // Value: ᮸
Python:
char = '\u1BB8'
print(char) # Output: ᮸
Perl:
my $char = "\x{1BB8}";
print $char; # Output: ᮸
PHP:
$char = "\x{1BB8}";
echo $char; // Output: ᮸
Ruby:
char = "\u{1BB8}"
puts char # Output: ᮸
Rust:
let c = '\u{1BB8}';
println!("{}", c); // Output: ᮸
Go:
char := '\u1BB8'
fmt.Printf("%c\n", char) // Output: ᮸
CSS:
/* CSS content property */
.element::before {
content: "\001BB8"; /* 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%B8
MD5:
91792e4759f3a0af5c4cf8e5fbe54c7d
SHA1:
5eb358e12071af3a39f008c9e007ad02971e475e
Base64:
4a64