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