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