C:
char c = '\u8054';
printf("%c\n", c); // Output: 联
JavaScript:
const char = '\u8054';
console.log(char); // Output: 联
Java:
char c = '\u8054';
System.out.println(c); // Output: 联
JSON:
{"text": "\u8054"} // Value: 联
Python:
char = '\u8054'
print(char) # Output: 联
Perl:
my $char = "\x{8054}";
print $char; # Output: 联
PHP:
$char = "\x{8054}";
echo $char; // Output: 联
Ruby:
char = "\u{8054}"
puts char # Output: 联
Rust:
let c = '\u{8054}';
println!("{}", c); // Output: 联
Go:
char := '\u8054'
fmt.Printf("%c\n", char) // Output: 联
CSS:
/* CSS content property */
.element::before {
content: "\008054"; /* 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%81%94
MD5:
fe510ad36130852599720f72298cee0e
SHA1:
9cd7392b4d811a725d2e83e6b873bece474fb24e
Base64:
6IGU