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