C:
char c = '\u9507';
printf("%c\n", c); // Output: 锇
JavaScript:
const char = '\u9507';
console.log(char); // Output: 锇
Java:
char c = '\u9507';
System.out.println(c); // Output: 锇
JSON:
{"text": "\u9507"} // Value: 锇
Python:
char = '\u9507'
print(char) # Output: 锇
Perl:
my $char = "\x{9507}";
print $char; # Output: 锇
PHP:
$char = "\x{9507}";
echo $char; // Output: 锇
Ruby:
char = "\u{9507}"
puts char # Output: 锇
Rust:
let c = '\u{9507}';
println!("{}", c); // Output: 锇
Go:
char := '\u9507'
fmt.Printf("%c\n", char) // Output: 锇
CSS:
/* CSS content property */
.element::before {
content: "\009507"; /* 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%94%87
MD5:
c4cf115d02eb2ebcf8e0ca5150af7ccc
SHA1:
6512f46dcc2a273a89051019e496da7fe89cb1a9
Base64:
6ZSH