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