C:
char c = '\u9482';
printf("%c\n", c); // Output: 钂
JavaScript:
const char = '\u9482';
console.log(char); // Output: 钂
Java:
char c = '\u9482';
System.out.println(c); // Output: 钂
JSON:
{"text": "\u9482"} // Value: 钂
Python:
char = '\u9482'
print(char) # Output: 钂
Perl:
my $char = "\x{9482}";
print $char; # Output: 钂
PHP:
$char = "\x{9482}";
echo $char; // Output: 钂
Ruby:
char = "\u{9482}"
puts char # Output: 钂
Rust:
let c = '\u{9482}';
println!("{}", c); // Output: 钂
Go:
char := '\u9482'
fmt.Printf("%c\n", char) // Output: 钂
CSS:
/* CSS content property */
.element::before {
content: "\009482"; /* 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%82
MD5:
02e124936bcc543e3ccbd9e79493d3e0
SHA1:
461034b1838fc14e910990dcb1cd85ef2c9d77de
Base64:
6ZKC