C:
char c = '\u7313';
printf("%c\n", c); // Output: 猓
JavaScript:
const char = '\u7313';
console.log(char); // Output: 猓
Java:
char c = '\u7313';
System.out.println(c); // Output: 猓
JSON:
{"text": "\u7313"} // Value: 猓
Python:
char = '\u7313'
print(char) # Output: 猓
Perl:
my $char = "\x{7313}";
print $char; # Output: 猓
PHP:
$char = "\x{7313}";
echo $char; // Output: 猓
Ruby:
char = "\u{7313}"
puts char # Output: 猓
Rust:
let c = '\u{7313}';
println!("{}", c); // Output: 猓
Go:
char := '\u7313'
fmt.Printf("%c\n", char) // Output: 猓
CSS:
/* CSS content property */
.element::before {
content: "\007313"; /* 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%93
MD5:
4ee09964c38213eac83656e6cfbf12e1
SHA1:
ed4b4d7cfe379b403fd21c128ccbcb4bf7041b09
Base64:
54yT