C:
char c = '\u9363';
printf("%c\n", c); // Output: 鍣
JavaScript:
const char = '\u9363';
console.log(char); // Output: 鍣
Java:
char c = '\u9363';
System.out.println(c); // Output: 鍣
JSON:
{"text": "\u9363"} // Value: 鍣
Python:
char = '\u9363'
print(char) # Output: 鍣
Perl:
my $char = "\x{9363}";
print $char; # Output: 鍣
PHP:
$char = "\x{9363}";
echo $char; // Output: 鍣
Ruby:
char = "\u{9363}"
puts char # Output: 鍣
Rust:
let c = '\u{9363}';
println!("{}", c); // Output: 鍣
Go:
char := '\u9363'
fmt.Printf("%c\n", char) // Output: 鍣
CSS:
/* CSS content property */
.element::before {
content: "\009363"; /* 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%A3
MD5:
43d4a767fb9bc03f2aa1ead43e1941f2
SHA1:
6d18f84f4fd45c03bc20e37ef68f2c416c0b5a03
Base64:
6Y2j