C:
char c = '\u9282';
printf("%c\n", c); // Output: 銂
JavaScript:
const char = '\u9282';
console.log(char); // Output: 銂
Java:
char c = '\u9282';
System.out.println(c); // Output: 銂
JSON:
{"text": "\u9282"} // Value: 銂
Python:
char = '\u9282'
print(char) # Output: 銂
Perl:
my $char = "\x{9282}";
print $char; # Output: 銂
PHP:
$char = "\x{9282}";
echo $char; // Output: 銂
Ruby:
char = "\u{9282}"
puts char # Output: 銂
Rust:
let c = '\u{9282}';
println!("{}", c); // Output: 銂
Go:
char := '\u9282'
fmt.Printf("%c\n", char) // Output: 銂
CSS:
/* CSS content property */
.element::before {
content: "\009282"; /* 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%8A%82
MD5:
f1af97d7e6577abaaea95cd99ed445ae
SHA1:
8db28fc17fa951c617e2de8e6770c7ffd8c99f43
Base64:
6YqC