C:
char c = '\u9653';
printf("%c\n", c); // Output: 陓
JavaScript:
const char = '\u9653';
console.log(char); // Output: 陓
Java:
char c = '\u9653';
System.out.println(c); // Output: 陓
JSON:
{"text": "\u9653"} // Value: 陓
Python:
char = '\u9653'
print(char) # Output: 陓
Perl:
my $char = "\x{9653}";
print $char; # Output: 陓
PHP:
$char = "\x{9653}";
echo $char; // Output: 陓
Ruby:
char = "\u{9653}"
puts char # Output: 陓
Rust:
let c = '\u{9653}';
println!("{}", c); // Output: 陓
Go:
char := '\u9653'
fmt.Printf("%c\n", char) // Output: 陓
CSS:
/* CSS content property */
.element::before {
content: "\009653"; /* 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%93
MD5:
65fd80d17cd5504f3bbe973ad0e58a1b
SHA1:
1aa39cf69707aa99f78d73a4717ec56e8d145d3b
Base64:
6ZmT