C:
char c = '\u731A';
printf("%c\n", c); // Output: 猚
JavaScript:
const char = '\u731A';
console.log(char); // Output: 猚
Java:
char c = '\u731A';
System.out.println(c); // Output: 猚
JSON:
{"text": "\u731A"} // Value: 猚
Python:
char = '\u731A'
print(char) # Output: 猚
Perl:
my $char = "\x{731A}";
print $char; # Output: 猚
PHP:
$char = "\x{731A}";
echo $char; // Output: 猚
Ruby:
char = "\u{731A}"
puts char # Output: 猚
Rust:
let c = '\u{731A}';
println!("{}", c); // Output: 猚
Go:
char := '\u731A'
fmt.Printf("%c\n", char) // Output: 猚
CSS:
/* CSS content property */
.element::before {
content: "\00731A"; /* 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%9A
MD5:
d2746339da24f6ca453dd10e24d6bb4e
SHA1:
e6463a99b3f647f71d927b12eb020826ed36eece
Base64:
54ya