C:
char c = '\u9C82';
printf("%c\n", c); // Output: 鲂
JavaScript:
const char = '\u9C82';
console.log(char); // Output: 鲂
Java:
char c = '\u9C82';
System.out.println(c); // Output: 鲂
JSON:
{"text": "\u9C82"} // Value: 鲂
Python:
char = '\u9C82'
print(char) # Output: 鲂
Perl:
my $char = "\x{9C82}";
print $char; # Output: 鲂
PHP:
$char = "\x{9C82}";
echo $char; // Output: 鲂
Ruby:
char = "\u{9C82}"
puts char # Output: 鲂
Rust:
let c = '\u{9C82}';
println!("{}", c); // Output: 鲂
Go:
char := '\u9C82'
fmt.Printf("%c\n", char) // Output: 鲂
CSS:
/* CSS content property */
.element::before {
content: "\009C82"; /* 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%B2%82
MD5:
02d5fde28ad43a74ffbb0d552c896d5f
SHA1:
82621d2fefec0c1e58ec7e9d6d769398b244528e
Base64:
6bKC