C:
char c = '\u734D';
printf("%c\n", c); // Output: 獍
JavaScript:
const char = '\u734D';
console.log(char); // Output: 獍
Java:
char c = '\u734D';
System.out.println(c); // Output: 獍
JSON:
{"text": "\u734D"} // Value: 獍
Python:
char = '\u734D'
print(char) # Output: 獍
Perl:
my $char = "\x{734D}";
print $char; # Output: 獍
PHP:
$char = "\x{734D}";
echo $char; // Output: 獍
Ruby:
char = "\u{734D}"
puts char # Output: 獍
Rust:
let c = '\u{734D}';
println!("{}", c); // Output: 獍
Go:
char := '\u734D'
fmt.Printf("%c\n", char) // Output: 獍
CSS:
/* CSS content property */
.element::before {
content: "\00734D"; /* 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%8D
MD5:
4918ee9beadf3f19e44110e66f3752b8
SHA1:
85cddf3b4d2c5561e8b8ed2eb21a6f3ffd4967f1
Base64:
542N