C:
char c = '\u7023';
printf("%c\n", c); // Output: 瀣
JavaScript:
const char = '\u7023';
console.log(char); // Output: 瀣
Java:
char c = '\u7023';
System.out.println(c); // Output: 瀣
JSON:
{"text": "\u7023"} // Value: 瀣
Python:
char = '\u7023'
print(char) # Output: 瀣
Perl:
my $char = "\x{7023}";
print $char; # Output: 瀣
PHP:
$char = "\x{7023}";
echo $char; // Output: 瀣
Ruby:
char = "\u{7023}"
puts char # Output: 瀣
Rust:
let c = '\u{7023}';
println!("{}", c); // Output: 瀣
Go:
char := '\u7023'
fmt.Printf("%c\n", char) // Output: 瀣
CSS:
/* CSS content property */
.element::before {
content: "\007023"; /* 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=%E7%80%A3
MD5:
20748779d8582e9ca1f4ad1290efcb5f
SHA1:
fb2ffd256752af6ed6e8a4b3d8b61266d1af7a81
Base64:
54Cj