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