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