C:
char c = '\u542E';
printf("%c\n", c); // Output: 吮
JavaScript:
const char = '\u542E';
console.log(char); // Output: 吮
Java:
char c = '\u542E';
System.out.println(c); // Output: 吮
JSON:
{"text": "\u542E"} // Value: 吮
Python:
char = '\u542E'
print(char) # Output: 吮
Perl:
my $char = "\x{542E}";
print $char; # Output: 吮
PHP:
$char = "\x{542E}";
echo $char; // Output: 吮
Ruby:
char = "\u{542E}"
puts char # Output: 吮
Rust:
let c = '\u{542E}';
println!("{}", c); // Output: 吮
Go:
char := '\u542E'
fmt.Printf("%c\n", char) // Output: 吮
CSS:
/* CSS content property */
.element::before {
content: "\00542E"; /* 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=%E5%90%AE
MD5:
6b9f4cb9b0c525431ab9da7715482927
SHA1:
885fa4029be50a399df170512ea6aa5edf99f51b
Base64:
5ZCu