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