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