C:
char c = '\u928D';
printf("%c\n", c); // Output: 銍
JavaScript:
const char = '\u928D';
console.log(char); // Output: 銍
Java:
char c = '\u928D';
System.out.println(c); // Output: 銍
JSON:
{"text": "\u928D"} // Value: 銍
Python:
char = '\u928D'
print(char) # Output: 銍
Perl:
my $char = "\x{928D}";
print $char; # Output: 銍
PHP:
$char = "\x{928D}";
echo $char; // Output: 銍
Ruby:
char = "\u{928D}"
puts char # Output: 銍
Rust:
let c = '\u{928D}';
println!("{}", c); // Output: 銍
Go:
char := '\u928D'
fmt.Printf("%c\n", char) // Output: 銍
CSS:
/* CSS content property */
.element::before {
content: "\00928D"; /* 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%8D
MD5:
b613f142d7db84bac47169f75cdce1ea
SHA1:
82f0224b52d4294ee3ecee403c2d2b620df2a0fd
Base64:
6YqN