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