C:
char c = '\u722A';
printf("%c\n", c); // Output: 爪
JavaScript:
const char = '\u722A';
console.log(char); // Output: 爪
Java:
char c = '\u722A';
System.out.println(c); // Output: 爪
JSON:
{"text": "\u722A"} // Value: 爪
Python:
char = '\u722A'
print(char) # Output: 爪
Perl:
my $char = "\x{722A}";
print $char; # Output: 爪
PHP:
$char = "\x{722A}";
echo $char; // Output: 爪
Ruby:
char = "\u{722A}"
puts char # Output: 爪
Rust:
let c = '\u{722A}';
println!("{}", c); // Output: 爪
Go:
char := '\u722A'
fmt.Printf("%c\n", char) // Output: 爪
CSS:
/* CSS content property */
.element::before {
content: "\00722A"; /* 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=%E7%88%AA
MD5:
e879db3cf3689bbd320e54c3e699cb24
SHA1:
14e7537eb5013992610ee319c245d51635297ccf
Base64:
54iq