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