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