C:
char c = '\u9433';
printf("%c\n", c); // Output: 鐳
JavaScript:
const char = '\u9433';
console.log(char); // Output: 鐳
Java:
char c = '\u9433';
System.out.println(c); // Output: 鐳
JSON:
{"text": "\u9433"} // Value: 鐳
Python:
char = '\u9433'
print(char) # Output: 鐳
Perl:
my $char = "\x{9433}";
print $char; # Output: 鐳
PHP:
$char = "\x{9433}";
echo $char; // Output: 鐳
Ruby:
char = "\u{9433}"
puts char # Output: 鐳
Rust:
let c = '\u{9433}';
println!("{}", c); // Output: 鐳
Go:
char := '\u9433'
fmt.Printf("%c\n", char) // Output: 鐳
CSS:
/* CSS content property */
.element::before {
content: "\009433"; /* 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%90%B3
MD5:
8358f8334d630a44a04d04c177cd25f0
SHA1:
42a51686c2bf1e6ec2315916f0507080450e67bd
Base64:
6ZCz