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