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