C:
char c = '\u7843';
printf("%c\n", c); // Output: 硃
JavaScript:
const char = '\u7843';
console.log(char); // Output: 硃
Java:
char c = '\u7843';
System.out.println(c); // Output: 硃
JSON:
{"text": "\u7843"} // Value: 硃
Python:
char = '\u7843'
print(char) # Output: 硃
Perl:
my $char = "\x{7843}";
print $char; # Output: 硃
PHP:
$char = "\x{7843}";
echo $char; // Output: 硃
Ruby:
char = "\u{7843}"
puts char # Output: 硃
Rust:
let c = '\u{7843}';
println!("{}", c); // Output: 硃
Go:
char := '\u7843'
fmt.Printf("%c\n", char) // Output: 硃
CSS:
/* CSS content property */
.element::before {
content: "\007843"; /* 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%A1%83
MD5:
263128a9af627fb84a43c10435d5504c
SHA1:
a21f279528c0124a1c3b0ea0f4f563b70b09a9b1
Base64:
56GD