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