C:
char c = '\u9654';
printf("%c\n", c); // Output: 陔
JavaScript:
const char = '\u9654';
console.log(char); // Output: 陔
Java:
char c = '\u9654';
System.out.println(c); // Output: 陔
JSON:
{"text": "\u9654"} // Value: 陔
Python:
char = '\u9654'
print(char) # Output: 陔
Perl:
my $char = "\x{9654}";
print $char; # Output: 陔
PHP:
$char = "\x{9654}";
echo $char; // Output: 陔
Ruby:
char = "\u{9654}"
puts char # Output: 陔
Rust:
let c = '\u{9654}';
println!("{}", c); // Output: 陔
Go:
char := '\u9654'
fmt.Printf("%c\n", char) // Output: 陔
CSS:
/* CSS content property */
.element::before {
content: "\009654"; /* 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%94
MD5:
8d94e1bc5e65715b26d7d373c1758541
SHA1:
f182be076855f9b612c1c9631f94fe1b8c8984f8
Base64:
6ZmU