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