C:
char c = '\u9673';
printf("%c\n", c); // Output: 陳
JavaScript:
const char = '\u9673';
console.log(char); // Output: 陳
Java:
char c = '\u9673';
System.out.println(c); // Output: 陳
JSON:
{"text": "\u9673"} // Value: 陳
Python:
char = '\u9673'
print(char) # Output: 陳
Perl:
my $char = "\x{9673}";
print $char; # Output: 陳
PHP:
$char = "\x{9673}";
echo $char; // Output: 陳
Ruby:
char = "\u{9673}"
puts char # Output: 陳
Rust:
let c = '\u{9673}';
println!("{}", c); // Output: 陳
Go:
char := '\u9673'
fmt.Printf("%c\n", char) // Output: 陳
CSS:
/* CSS content property */
.element::before {
content: "\009673"; /* 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=%E9%99%B3
MD5:
2557473f9ad4358f38578d1ddfa4c933
SHA1:
1121182bb4e87bc5138d229d991522728b0d3c39
Base64:
6Zmz