C:
char c = '\u9651';
printf("%c\n", c); // Output: 陑
JavaScript:
const char = '\u9651';
console.log(char); // Output: 陑
Java:
char c = '\u9651';
System.out.println(c); // Output: 陑
JSON:
{"text": "\u9651"} // Value: 陑
Python:
char = '\u9651'
print(char) # Output: 陑
Perl:
my $char = "\x{9651}";
print $char; # Output: 陑
PHP:
$char = "\x{9651}";
echo $char; // Output: 陑
Ruby:
char = "\u{9651}"
puts char # Output: 陑
Rust:
let c = '\u{9651}';
println!("{}", c); // Output: 陑
Go:
char := '\u9651'
fmt.Printf("%c\n", char) // Output: 陑
CSS:
/* CSS content property */
.element::before {
content: "\009651"; /* 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%91
MD5:
a7c13abedad04096a1e6fe2788a97ffc
SHA1:
7fa87ffd02021bd9014828d9e15ae98487d15533
Base64:
6ZmR