C:
char c = '\u1BA8';
printf("%c\n", c); // Output: ᮨ
JavaScript:
const char = '\u1BA8';
console.log(char); // Output: ᮨ
Java:
char c = '\u1BA8';
System.out.println(c); // Output: ᮨ
JSON:
{"text": "\u1BA8"} // Value: ᮨ
Python:
char = '\u1BA8'
print(char) # Output: ᮨ
Perl:
my $char = "\x{1BA8}";
print $char; # Output: ᮨ
PHP:
$char = "\x{1BA8}";
echo $char; // Output: ᮨ
Ruby:
char = "\u{1BA8}"
puts char # Output: ᮨ
Rust:
let c = '\u{1BA8}';
println!("{}", c); // Output: ᮨ
Go:
char := '\u1BA8'
fmt.Printf("%c\n", char) // Output: ᮨ
CSS:
/* CSS content property */
.element::before {
content: "\001BA8"; /* 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%A8
MD5:
9e493a0a4329a9331f282fe83f9359ac
SHA1:
056b18d80e8661dc148f58bd31b26ea39a2ab345
Base64:
4a6o