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