C:
char c = '\u7306';
printf("%c\n", c); // Output: 猆
JavaScript:
const char = '\u7306';
console.log(char); // Output: 猆
Java:
char c = '\u7306';
System.out.println(c); // Output: 猆
JSON:
{"text": "\u7306"} // Value: 猆
Python:
char = '\u7306'
print(char) # Output: 猆
Perl:
my $char = "\x{7306}";
print $char; # Output: 猆
PHP:
$char = "\x{7306}";
echo $char; // Output: 猆
Ruby:
char = "\u{7306}"
puts char # Output: 猆
Rust:
let c = '\u{7306}';
println!("{}", c); // Output: 猆
Go:
char := '\u7306'
fmt.Printf("%c\n", char) // Output: 猆
CSS:
/* CSS content property */
.element::before {
content: "\007306"; /* 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%86
MD5:
979bbb4f6ff9b35fa6a12721228a740b
SHA1:
51a6038be4ef61c6c648af33908520a0ca3d7127
Base64:
54yG