C:
char c = '\uA8C3';
printf("%c\n", c); // Output: ꣃ
JavaScript:
const char = '\uA8C3';
console.log(char); // Output: ꣃ
Java:
char c = '\uA8C3';
System.out.println(c); // Output: ꣃ
JSON:
{"text": "\uA8C3"} // Value: ꣃ
Python:
char = '\uA8C3'
print(char) # Output: ꣃ
Perl:
my $char = "\x{A8C3}";
print $char; # Output: ꣃ
PHP:
$char = "\x{A8C3}";
echo $char; // Output: ꣃ
Ruby:
char = "\u{A8C3}"
puts char # Output: ꣃ
Rust:
let c = '\u{A8C3}';
println!("{}", c); // Output: ꣃ
Go:
char := '\uA8C3'
fmt.Printf("%c\n", char) // Output: ꣃ
CSS:
/* CSS content property */
.element::before {
content: "\00A8C3"; /* 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%A3%83
MD5:
2dc9ef809cb542b4d7cf6694184fc1d6
SHA1:
439bc79eef79ebd4ddcfb3139a1bc3ccedfa794c
Base64:
6qOD