C:
char c = '\u7320';
printf("%c\n", c); // Output: 猠
JavaScript:
const char = '\u7320';
console.log(char); // Output: 猠
Java:
char c = '\u7320';
System.out.println(c); // Output: 猠
JSON:
{"text": "\u7320"} // Value: 猠
Python:
char = '\u7320'
print(char) # Output: 猠
Perl:
my $char = "\x{7320}";
print $char; # Output: 猠
PHP:
$char = "\x{7320}";
echo $char; // Output: 猠
Ruby:
char = "\u{7320}"
puts char # Output: 猠
Rust:
let c = '\u{7320}';
println!("{}", c); // Output: 猠
Go:
char := '\u7320'
fmt.Printf("%c\n", char) // Output: 猠
CSS:
/* CSS content property */
.element::before {
content: "\007320"; /* 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%A0
MD5:
c451cc135572bc42cd4a3a651100f947
SHA1:
efe48b7bf2c4efc9277dbcda7e9cb07f71baaba6
Base64:
54yg