C:
char c = '\u7357';
printf("%c\n", c); // Output: 獗
JavaScript:
const char = '\u7357';
console.log(char); // Output: 獗
Java:
char c = '\u7357';
System.out.println(c); // Output: 獗
JSON:
{"text": "\u7357"} // Value: 獗
Python:
char = '\u7357'
print(char) # Output: 獗
Perl:
my $char = "\x{7357}";
print $char; # Output: 獗
PHP:
$char = "\x{7357}";
echo $char; // Output: 獗
Ruby:
char = "\u{7357}"
puts char # Output: 獗
Rust:
let c = '\u{7357}';
println!("{}", c); // Output: 獗
Go:
char := '\u7357'
fmt.Printf("%c\n", char) // Output: 獗
CSS:
/* CSS content property */
.element::before {
content: "\007357"; /* 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%97
MD5:
bc44b31312f438fb8cf456950f0d9179
SHA1:
a73bcc7e5422c065c47409c37a4cfec167e8e676
Base64:
542X