C:
char c = '\u6DDA';
printf("%c\n", c); // Output: 淚
JavaScript:
const char = '\u6DDA';
console.log(char); // Output: 淚
Java:
char c = '\u6DDA';
System.out.println(c); // Output: 淚
JSON:
{"text": "\u6DDA"} // Value: 淚
Python:
char = '\u6DDA'
print(char) # Output: 淚
Perl:
my $char = "\x{6DDA}";
print $char; # Output: 淚
PHP:
$char = "\x{6DDA}";
echo $char; // Output: 淚
Ruby:
char = "\u{6DDA}"
puts char # Output: 淚
Rust:
let c = '\u{6DDA}';
println!("{}", c); // Output: 淚
Go:
char := '\u6DDA'
fmt.Printf("%c\n", char) // Output: 淚
CSS:
/* CSS content property */
.element::before {
content: "\006DDA"; /* 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%B7%9A
MD5:
97d4d901aa1f63efffb4c06cf5f54dbb
SHA1:
240ac2a2a6c6351ab9afc70be624efba664df0fe
Base64:
5rea