C:
char c = '\u9C8E';
printf("%c\n", c); // Output: 鲎
JavaScript:
const char = '\u9C8E';
console.log(char); // Output: 鲎
Java:
char c = '\u9C8E';
System.out.println(c); // Output: 鲎
JSON:
{"text": "\u9C8E"} // Value: 鲎
Python:
char = '\u9C8E'
print(char) # Output: 鲎
Perl:
my $char = "\x{9C8E}";
print $char; # Output: 鲎
PHP:
$char = "\x{9C8E}";
echo $char; // Output: 鲎
Ruby:
char = "\u{9C8E}"
puts char # Output: 鲎
Rust:
let c = '\u{9C8E}';
println!("{}", c); // Output: 鲎
Go:
char := '\u9C8E'
fmt.Printf("%c\n", char) // Output: 鲎
CSS:
/* CSS content property */
.element::before {
content: "\009C8E"; /* 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%8E
MD5:
e27f1199e280d2842cfb39e987582c47
SHA1:
dfc7b1db3d3ff7aa6c4494290d79cd331aadab10
Base64:
6bKO