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