C:
char c = '\uAB21';
printf("%c\n", c); // Output: ꬡ
JavaScript:
const char = '\uAB21';
console.log(char); // Output: ꬡ
Java:
char c = '\uAB21';
System.out.println(c); // Output: ꬡ
JSON:
{"text": "\uAB21"} // Value: ꬡ
Python:
char = '\uAB21'
print(char) # Output: ꬡ
Perl:
my $char = "\x{AB21}";
print $char; # Output: ꬡ
PHP:
$char = "\x{AB21}";
echo $char; // Output: ꬡ
Ruby:
char = "\u{AB21}"
puts char # Output: ꬡ
Rust:
let c = '\u{AB21}';
println!("{}", c); // Output: ꬡ
Go:
char := '\uAB21'
fmt.Printf("%c\n", char) // Output: ꬡ
CSS:
/* CSS content property */
.element::before {
content: "\00AB21"; /* 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=%EA%AC%A1
MD5:
3d7153065a070ef247e979e8534e6547
SHA1:
a27e713eeecbae37c04072215b15812d6cedad09
Base64:
6qyh