C:
char c = '\uA3C8';
printf("%c\n", c); // Output: ꏈ
JavaScript:
const char = '\uA3C8';
console.log(char); // Output: ꏈ
Java:
char c = '\uA3C8';
System.out.println(c); // Output: ꏈ
JSON:
{"text": "\uA3C8"} // Value: ꏈ
Python:
char = '\uA3C8'
print(char) # Output: ꏈ
Perl:
my $char = "\x{A3C8}";
print $char; # Output: ꏈ
PHP:
$char = "\x{A3C8}";
echo $char; // Output: ꏈ
Ruby:
char = "\u{A3C8}"
puts char # Output: ꏈ
Rust:
let c = '\u{A3C8}';
println!("{}", c); // Output: ꏈ
Go:
char := '\uA3C8'
fmt.Printf("%c\n", char) // Output: ꏈ
CSS:
/* CSS content property */
.element::before {
content: "\00A3C8"; /* 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%88
MD5:
2daf3feaa9f28b4a618a4d3323b753f4
SHA1:
946e7fd2aa1f84095c9dca874b05e3be47e13710
Base64:
6o+I