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