C:
char c = '\u9483';
printf("%c\n", c); // Output: 钃
JavaScript:
const char = '\u9483';
console.log(char); // Output: 钃
Java:
char c = '\u9483';
System.out.println(c); // Output: 钃
JSON:
{"text": "\u9483"} // Value: 钃
Python:
char = '\u9483'
print(char) # Output: 钃
Perl:
my $char = "\x{9483}";
print $char; # Output: 钃
PHP:
$char = "\x{9483}";
echo $char; // Output: 钃
Ruby:
char = "\u{9483}"
puts char # Output: 钃
Rust:
let c = '\u{9483}';
println!("{}", c); // Output: 钃
Go:
char := '\u9483'
fmt.Printf("%c\n", char) // Output: 钃
CSS:
/* CSS content property */
.element::before {
content: "\009483"; /* 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%83
MD5:
d00630b89d2ca4ca942267717e95c388
SHA1:
82042748585ec0c8944feb061e9c5168989bd346
Base64:
6ZKD