C:
char c = '\u9402';
printf("%c\n", c); // Output: 鐂
JavaScript:
const char = '\u9402';
console.log(char); // Output: 鐂
Java:
char c = '\u9402';
System.out.println(c); // Output: 鐂
JSON:
{"text": "\u9402"} // Value: 鐂
Python:
char = '\u9402'
print(char) # Output: 鐂
Perl:
my $char = "\x{9402}";
print $char; # Output: 鐂
PHP:
$char = "\x{9402}";
echo $char; // Output: 鐂
Ruby:
char = "\u{9402}"
puts char # Output: 鐂
Rust:
let c = '\u{9402}';
println!("{}", c); // Output: 鐂
Go:
char := '\u9402'
fmt.Printf("%c\n", char) // Output: 鐂
CSS:
/* CSS content property */
.element::before {
content: "\009402"; /* 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%90%82
MD5:
3298ec2b221849aebaa3c3ae49161271
SHA1:
c01f607fd1132c04ee312b7f0c66db93aed55314
Base64:
6ZCC