C:
char c = '\u7D4D';
printf("%c\n", c); // Output: 絍
JavaScript:
const char = '\u7D4D';
console.log(char); // Output: 絍
Java:
char c = '\u7D4D';
System.out.println(c); // Output: 絍
JSON:
{"text": "\u7D4D"} // Value: 絍
Python:
char = '\u7D4D'
print(char) # Output: 絍
Perl:
my $char = "\x{7D4D}";
print $char; # Output: 絍
PHP:
$char = "\x{7D4D}";
echo $char; // Output: 絍
Ruby:
char = "\u{7D4D}"
puts char # Output: 絍
Rust:
let c = '\u{7D4D}';
println!("{}", c); // Output: 絍
Go:
char := '\u7D4D'
fmt.Printf("%c\n", char) // Output: 絍
CSS:
/* CSS content property */
.element::before {
content: "\007D4D"; /* 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%B5%8D
MD5:
e4e44624d4e0a2e39d17de0e38d4df7e
SHA1:
cde8d9a65d581dd5d231304c04c0ecae5173d2b6
Base64:
57WN