C:
char c = '\u9732';
printf("%c\n", c); // Output: 露
JavaScript:
const char = '\u9732';
console.log(char); // Output: 露
Java:
char c = '\u9732';
System.out.println(c); // Output: 露
JSON:
{"text": "\u9732"} // Value: 露
Python:
char = '\u9732'
print(char) # Output: 露
Perl:
my $char = "\x{9732}";
print $char; # Output: 露
PHP:
$char = "\x{9732}";
echo $char; // Output: 露
Ruby:
char = "\u{9732}"
puts char # Output: 露
Rust:
let c = '\u{9732}';
println!("{}", c); // Output: 露
Go:
char := '\u9732'
fmt.Printf("%c\n", char) // Output: 露
CSS:
/* CSS content property */
.element::before {
content: "\009732"; /* 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=%E9%9C%B2
MD5:
ecdeed790c0c861df8c91003011b9e85
SHA1:
1af3e0fcd3b5b7cbccb295d0212ab9bc0ee96d35
Base64:
6Zyy