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