C:
char c = '\u7323';
printf("%c\n", c); // Output: 猣
JavaScript:
const char = '\u7323';
console.log(char); // Output: 猣
Java:
char c = '\u7323';
System.out.println(c); // Output: 猣
JSON:
{"text": "\u7323"} // Value: 猣
Python:
char = '\u7323'
print(char) # Output: 猣
Perl:
my $char = "\x{7323}";
print $char; # Output: 猣
PHP:
$char = "\x{7323}";
echo $char; // Output: 猣
Ruby:
char = "\u{7323}"
puts char # Output: 猣
Rust:
let c = '\u{7323}';
println!("{}", c); // Output: 猣
Go:
char := '\u7323'
fmt.Printf("%c\n", char) // Output: 猣
CSS:
/* CSS content property */
.element::before {
content: "\007323"; /* 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%A3
MD5:
2a100e2a01becea3456a6d5b1f5efe65
SHA1:
6f6c9ed884294e7514a6511ebb8695057502314c
Base64:
54yj