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