C:
char c = '\u6D8E';
printf("%c\n", c); // Output: 涎
JavaScript:
const char = '\u6D8E';
console.log(char); // Output: 涎
Java:
char c = '\u6D8E';
System.out.println(c); // Output: 涎
JSON:
{"text": "\u6D8E"} // Value: 涎
Python:
char = '\u6D8E'
print(char) # Output: 涎
Perl:
my $char = "\x{6D8E}";
print $char; # Output: 涎
PHP:
$char = "\x{6D8E}";
echo $char; // Output: 涎
Ruby:
char = "\u{6D8E}"
puts char # Output: 涎
Rust:
let c = '\u{6D8E}';
println!("{}", c); // Output: 涎
Go:
char := '\u6D8E'
fmt.Printf("%c\n", char) // Output: 涎
CSS:
/* CSS content property */
.element::before {
content: "\006D8E"; /* 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=%E6%B6%8E
MD5:
eec3e26a2bab85efe421a4bed606ec88
SHA1:
93702053e90ddbc84d61f47e5e1375e7fb34836e
Base64:
5raO