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