C:
char c = '\u9484';
printf("%c\n", c); // Output: 钄
JavaScript:
const char = '\u9484';
console.log(char); // Output: 钄
Java:
char c = '\u9484';
System.out.println(c); // Output: 钄
JSON:
{"text": "\u9484"} // Value: 钄
Python:
char = '\u9484'
print(char) # Output: 钄
Perl:
my $char = "\x{9484}";
print $char; # Output: 钄
PHP:
$char = "\x{9484}";
echo $char; // Output: 钄
Ruby:
char = "\u{9484}"
puts char # Output: 钄
Rust:
let c = '\u{9484}';
println!("{}", c); // Output: 钄
Go:
char := '\u9484'
fmt.Printf("%c\n", char) // Output: 钄
CSS:
/* CSS content property */
.element::before {
content: "\009484"; /* 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%84
MD5:
39e1ba717872f61d6516cfb90e5e73d9
SHA1:
6553b556c053d9a961e209732b331320bf51e20d
Base64:
6ZKE