C:
char c = '\uA1B3';
printf("%c\n", c); // Output: ꆳ
JavaScript:
const char = '\uA1B3';
console.log(char); // Output: ꆳ
Java:
char c = '\uA1B3';
System.out.println(c); // Output: ꆳ
JSON:
{"text": "\uA1B3"} // Value: ꆳ
Python:
char = '\uA1B3'
print(char) # Output: ꆳ
Perl:
my $char = "\x{A1B3}";
print $char; # Output: ꆳ
PHP:
$char = "\x{A1B3}";
echo $char; // Output: ꆳ
Ruby:
char = "\u{A1B3}"
puts char # Output: ꆳ
Rust:
let c = '\u{A1B3}';
println!("{}", c); // Output: ꆳ
Go:
char := '\uA1B3'
fmt.Printf("%c\n", char) // Output: ꆳ
CSS:
/* CSS content property */
.element::before {
content: "\00A1B3"; /* 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%86%B3
MD5:
7e5c93ef8c90c5c4b94af1bce2ad3b19
SHA1:
8764dc390c9fe4e309b06d96d84aeb2f5024fb8a
Base64:
6oaz