C:
char c = '\u7377';
printf("%c\n", c); // Output: 獷
JavaScript:
const char = '\u7377';
console.log(char); // Output: 獷
Java:
char c = '\u7377';
System.out.println(c); // Output: 獷
JSON:
{"text": "\u7377"} // Value: 獷
Python:
char = '\u7377'
print(char) # Output: 獷
Perl:
my $char = "\x{7377}";
print $char; # Output: 獷
PHP:
$char = "\x{7377}";
echo $char; // Output: 獷
Ruby:
char = "\u{7377}"
puts char # Output: 獷
Rust:
let c = '\u{7377}';
println!("{}", c); // Output: 獷
Go:
char := '\u7377'
fmt.Printf("%c\n", char) // Output: 獷
CSS:
/* CSS content property */
.element::before {
content: "\007377"; /* 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%8D%B7
MD5:
709bb735d23dd5639d3422b8119063e6
SHA1:
475d9b25e8cacd3a0f3a3c2e3b6018c18d701667
Base64:
5423