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