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