C:
char c = '\u9455';
printf("%c\n", c); // Output: 鑕
JavaScript:
const char = '\u9455';
console.log(char); // Output: 鑕
Java:
char c = '\u9455';
System.out.println(c); // Output: 鑕
JSON:
{"text": "\u9455"} // Value: 鑕
Python:
char = '\u9455'
print(char) # Output: 鑕
Perl:
my $char = "\x{9455}";
print $char; # Output: 鑕
PHP:
$char = "\x{9455}";
echo $char; // Output: 鑕
Ruby:
char = "\u{9455}"
puts char # Output: 鑕
Rust:
let c = '\u{9455}';
println!("{}", c); // Output: 鑕
Go:
char := '\u9455'
fmt.Printf("%c\n", char) // Output: 鑕
CSS:
/* CSS content property */
.element::before {
content: "\009455"; /* 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%91%95
MD5:
60ee30e83a042e07d932066b78aa8e64
SHA1:
b57df068f07729d091ef4b4763f0da5626121763
Base64:
6ZGV