C:
char c = '\u9284';
printf("%c\n", c); // Output: 銄
JavaScript:
const char = '\u9284';
console.log(char); // Output: 銄
Java:
char c = '\u9284';
System.out.println(c); // Output: 銄
JSON:
{"text": "\u9284"} // Value: 銄
Python:
char = '\u9284'
print(char) # Output: 銄
Perl:
my $char = "\x{9284}";
print $char; # Output: 銄
PHP:
$char = "\x{9284}";
echo $char; // Output: 銄
Ruby:
char = "\u{9284}"
puts char # Output: 銄
Rust:
let c = '\u{9284}';
println!("{}", c); // Output: 銄
Go:
char := '\u9284'
fmt.Printf("%c\n", char) // Output: 銄
CSS:
/* CSS content property */
.element::before {
content: "\009284"; /* 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%84
MD5:
90ce464f1189bf802fc6f00115e08132
SHA1:
3f8aa37b592464fe9adcc752f461e376b58b2c05
Base64:
6YqE