C:
char c = '\uA3A0';
printf("%c\n", c); // Output: ꎠ
JavaScript:
const char = '\uA3A0';
console.log(char); // Output: ꎠ
Java:
char c = '\uA3A0';
System.out.println(c); // Output: ꎠ
JSON:
{"text": "\uA3A0"} // Value: ꎠ
Python:
char = '\uA3A0'
print(char) # Output: ꎠ
Perl:
my $char = "\x{A3A0}";
print $char; # Output: ꎠ
PHP:
$char = "\x{A3A0}";
echo $char; // Output: ꎠ
Ruby:
char = "\u{A3A0}"
puts char # Output: ꎠ
Rust:
let c = '\u{A3A0}';
println!("{}", c); // Output: ꎠ
Go:
char := '\uA3A0'
fmt.Printf("%c\n", char) // Output: ꎠ
CSS:
/* CSS content property */
.element::before {
content: "\00A3A0"; /* 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%8E%A0
MD5:
03edb8fc04ee9bce61e29376c2539cd9
SHA1:
51b93823dec62780d312fcf9feeaf8711d7ae428
Base64:
6o6g