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