C:
char c = '\u7329';
printf("%c\n", c); // Output: 猩
JavaScript:
const char = '\u7329';
console.log(char); // Output: 猩
Java:
char c = '\u7329';
System.out.println(c); // Output: 猩
JSON:
{"text": "\u7329"} // Value: 猩
Python:
char = '\u7329'
print(char) # Output: 猩
Perl:
my $char = "\x{7329}";
print $char; # Output: 猩
PHP:
$char = "\x{7329}";
echo $char; // Output: 猩
Ruby:
char = "\u{7329}"
puts char # Output: 猩
Rust:
let c = '\u{7329}';
println!("{}", c); // Output: 猩
Go:
char := '\u7329'
fmt.Printf("%c\n", char) // Output: 猩
CSS:
/* CSS content property */
.element::before {
content: "\007329"; /* 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%8C%A9
MD5:
96dc7c7e3704f54e67e872a20c0cfa74
SHA1:
fab7bd722ac09f6b999159aca6ca84e1cd24aba8
Base64:
54yp