C:
char c = '\u7315';
printf("%c\n", c); // Output: 猕
JavaScript:
const char = '\u7315';
console.log(char); // Output: 猕
Java:
char c = '\u7315';
System.out.println(c); // Output: 猕
JSON:
{"text": "\u7315"} // Value: 猕
Python:
char = '\u7315'
print(char) # Output: 猕
Perl:
my $char = "\x{7315}";
print $char; # Output: 猕
PHP:
$char = "\x{7315}";
echo $char; // Output: 猕
Ruby:
char = "\u{7315}"
puts char # Output: 猕
Rust:
let c = '\u{7315}';
println!("{}", c); // Output: 猕
Go:
char := '\u7315'
fmt.Printf("%c\n", char) // Output: 猕
CSS:
/* CSS content property */
.element::before {
content: "\007315"; /* 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%95
MD5:
707c9dad7e03b6963b6af00fbbc008f3
SHA1:
24958a8d5a510d6377e2ef0de31035cefb89f8c0
Base64:
54yV