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