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