C:
char c = '\u6DA6';
printf("%c\n", c); // Output: 润
JavaScript:
const char = '\u6DA6';
console.log(char); // Output: 润
Java:
char c = '\u6DA6';
System.out.println(c); // Output: 润
JSON:
{"text": "\u6DA6"} // Value: 润
Python:
char = '\u6DA6'
print(char) # Output: 润
Perl:
my $char = "\x{6DA6}";
print $char; # Output: 润
PHP:
$char = "\x{6DA6}";
echo $char; // Output: 润
Ruby:
char = "\u{6DA6}"
puts char # Output: 润
Rust:
let c = '\u{6DA6}';
println!("{}", c); // Output: 润
Go:
char := '\u6DA6'
fmt.Printf("%c\n", char) // Output: 润
CSS:
/* CSS content property */
.element::before {
content: "\006DA6"; /* 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%A6
MD5:
0c1c881784376283943f6d106daf6445
SHA1:
1a3b0ac4db885124c2ca8a0ec625518e882c446f
Base64:
5ram