C:
char c = '\u7319';
printf("%c\n", c); // Output: 猙
JavaScript:
const char = '\u7319';
console.log(char); // Output: 猙
Java:
char c = '\u7319';
System.out.println(c); // Output: 猙
JSON:
{"text": "\u7319"} // Value: 猙
Python:
char = '\u7319'
print(char) # Output: 猙
Perl:
my $char = "\x{7319}";
print $char; # Output: 猙
PHP:
$char = "\x{7319}";
echo $char; // Output: 猙
Ruby:
char = "\u{7319}"
puts char # Output: 猙
Rust:
let c = '\u{7319}';
println!("{}", c); // Output: 猙
Go:
char := '\u7319'
fmt.Printf("%c\n", char) // Output: 猙
CSS:
/* CSS content property */
.element::before {
content: "\007319"; /* 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%99
MD5:
31ae5641a8e1bb9cf58028f5628d8d62
SHA1:
c7013075e7104f68b0349f9bfd7acba19e1b34ac
Base64:
54yZ