C:
char c = '\u9481';
printf("%c\n", c); // Output: 钁
JavaScript:
const char = '\u9481';
console.log(char); // Output: 钁
Java:
char c = '\u9481';
System.out.println(c); // Output: 钁
JSON:
{"text": "\u9481"} // Value: 钁
Python:
char = '\u9481'
print(char) # Output: 钁
Perl:
my $char = "\x{9481}";
print $char; # Output: 钁
PHP:
$char = "\x{9481}";
echo $char; // Output: 钁
Ruby:
char = "\u{9481}"
puts char # Output: 钁
Rust:
let c = '\u{9481}';
println!("{}", c); // Output: 钁
Go:
char := '\u9481'
fmt.Printf("%c\n", char) // Output: 钁
CSS:
/* CSS content property */
.element::before {
content: "\009481"; /* 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%92%81
MD5:
4f42503548f4a396b3fcec9bf0ee2401
SHA1:
0e482e1957b31a55cfdbf82163cfdeccece251b2
Base64:
6ZKB