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