C:
char c = '\u8711';
printf("%c\n", c); // Output: 蜑
JavaScript:
const char = '\u8711';
console.log(char); // Output: 蜑
Java:
char c = '\u8711';
System.out.println(c); // Output: 蜑
JSON:
{"text": "\u8711"} // Value: 蜑
Python:
char = '\u8711'
print(char) # Output: 蜑
Perl:
my $char = "\x{8711}";
print $char; # Output: 蜑
PHP:
$char = "\x{8711}";
echo $char; // Output: 蜑
Ruby:
char = "\u{8711}"
puts char # Output: 蜑
Rust:
let c = '\u{8711}';
println!("{}", c); // Output: 蜑
Go:
char := '\u8711'
fmt.Printf("%c\n", char) // Output: 蜑
CSS:
/* CSS content property */
.element::before {
content: "\008711"; /* 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=%E8%9C%91
MD5:
7ab5906ff5017c4db0425796850dc316
SHA1:
65c0db5b0860076af4e4edb384478a522fc71a4a
Base64:
6JyR