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