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