C:
char c = '\u7307';
printf("%c\n", c); // Output: 猇
JavaScript:
const char = '\u7307';
console.log(char); // Output: 猇
Java:
char c = '\u7307';
System.out.println(c); // Output: 猇
JSON:
{"text": "\u7307"} // Value: 猇
Python:
char = '\u7307'
print(char) # Output: 猇
Perl:
my $char = "\x{7307}";
print $char; # Output: 猇
PHP:
$char = "\x{7307}";
echo $char; // Output: 猇
Ruby:
char = "\u{7307}"
puts char # Output: 猇
Rust:
let c = '\u{7307}';
println!("{}", c); // Output: 猇
Go:
char := '\u7307'
fmt.Printf("%c\n", char) // Output: 猇
CSS:
/* CSS content property */
.element::before {
content: "\007307"; /* 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%87
MD5:
f472ec885c429a71e8dcc168f98ad285
SHA1:
8816ca73bf1e1d29db4cfab7a0acaf9012124032
Base64:
54yH