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