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