C:
char c = '\u7022';
printf("%c\n", c); // Output: 瀢
JavaScript:
const char = '\u7022';
console.log(char); // Output: 瀢
Java:
char c = '\u7022';
System.out.println(c); // Output: 瀢
JSON:
{"text": "\u7022"} // Value: 瀢
Python:
char = '\u7022'
print(char) # Output: 瀢
Perl:
my $char = "\x{7022}";
print $char; # Output: 瀢
PHP:
$char = "\x{7022}";
echo $char; // Output: 瀢
Ruby:
char = "\u{7022}"
puts char # Output: 瀢
Rust:
let c = '\u{7022}';
println!("{}", c); // Output: 瀢
Go:
char := '\u7022'
fmt.Printf("%c\n", char) // Output: 瀢
CSS:
/* CSS content property */
.element::before {
content: "\007022"; /* 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%A2
MD5:
ceea6404a685012f14b0c39df528f88e
SHA1:
8e71a0038ceaf15302cb2543dd80d8ff9df5d6ff
Base64:
54Ci