C:
char c = '\u7303';
printf("%c\n", c); // Output: 猃
JavaScript:
const char = '\u7303';
console.log(char); // Output: 猃
Java:
char c = '\u7303';
System.out.println(c); // Output: 猃
JSON:
{"text": "\u7303"} // Value: 猃
Python:
char = '\u7303'
print(char) # Output: 猃
Perl:
my $char = "\x{7303}";
print $char; # Output: 猃
PHP:
$char = "\x{7303}";
echo $char; // Output: 猃
Ruby:
char = "\u{7303}"
puts char # Output: 猃
Rust:
let c = '\u{7303}';
println!("{}", c); // Output: 猃
Go:
char := '\u7303'
fmt.Printf("%c\n", char) // Output: 猃
CSS:
/* CSS content property */
.element::before {
content: "\007303"; /* 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%83
MD5:
af629c836dccd3502f9cb4b5ab91afa5
SHA1:
d81b86e8b83199171e50e8d8db0859d156a366dc
Base64:
54yD