C:
char c = '\u9350';
printf("%c\n", c); // Output: 鍐
JavaScript:
const char = '\u9350';
console.log(char); // Output: 鍐
Java:
char c = '\u9350';
System.out.println(c); // Output: 鍐
JSON:
{"text": "\u9350"} // Value: 鍐
Python:
char = '\u9350'
print(char) # Output: 鍐
Perl:
my $char = "\x{9350}";
print $char; # Output: 鍐
PHP:
$char = "\x{9350}";
echo $char; // Output: 鍐
Ruby:
char = "\u{9350}"
puts char # Output: 鍐
Rust:
let c = '\u{9350}';
println!("{}", c); // Output: 鍐
Go:
char := '\u9350'
fmt.Printf("%c\n", char) // Output: 鍐
CSS:
/* CSS content property */
.element::before {
content: "\009350"; /* 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%90
MD5:
2025aae668c9ef095fc95f7cffb7068d
SHA1:
4de1623345e18313da9654c25182425fd7d2fc03
Base64:
6Y2Q