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