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