C:
char c = '\u9287';
printf("%c\n", c); // Output: 銇
JavaScript:
const char = '\u9287';
console.log(char); // Output: 銇
Java:
char c = '\u9287';
System.out.println(c); // Output: 銇
JSON:
{"text": "\u9287"} // Value: 銇
Python:
char = '\u9287'
print(char) # Output: 銇
Perl:
my $char = "\x{9287}";
print $char; # Output: 銇
PHP:
$char = "\x{9287}";
echo $char; // Output: 銇
Ruby:
char = "\u{9287}"
puts char # Output: 銇
Rust:
let c = '\u{9287}';
println!("{}", c); // Output: 銇
Go:
char := '\u9287'
fmt.Printf("%c\n", char) // Output: 銇
CSS:
/* CSS content property */
.element::before {
content: "\009287"; /* 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%8A%87
MD5:
79cbe3963de11e18df14914c284d461c
SHA1:
180e112c67b848c385e4a242f17e64e91477d78c
Base64:
6YqH