C:
char c = '\u9362';
printf("%c\n", c); // Output: 鍢
JavaScript:
const char = '\u9362';
console.log(char); // Output: 鍢
Java:
char c = '\u9362';
System.out.println(c); // Output: 鍢
JSON:
{"text": "\u9362"} // Value: 鍢
Python:
char = '\u9362'
print(char) # Output: 鍢
Perl:
my $char = "\x{9362}";
print $char; # Output: 鍢
PHP:
$char = "\x{9362}";
echo $char; // Output: 鍢
Ruby:
char = "\u{9362}"
puts char # Output: 鍢
Rust:
let c = '\u{9362}';
println!("{}", c); // Output: 鍢
Go:
char := '\u9362'
fmt.Printf("%c\n", char) // Output: 鍢
CSS:
/* CSS content property */
.element::before {
content: "\009362"; /* 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%A2
MD5:
c676357f5c4f712e27e2581a2ac33786
SHA1:
5fcc864d607fa5afacb07d20c124d2443c007444
Base64:
6Y2i