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