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