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