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