C:
char c = '\u701E';
printf("%c\n", c); // Output: 瀞
JavaScript:
const char = '\u701E';
console.log(char); // Output: 瀞
Java:
char c = '\u701E';
System.out.println(c); // Output: 瀞
JSON:
{"text": "\u701E"} // Value: 瀞
Python:
char = '\u701E'
print(char) # Output: 瀞
Perl:
my $char = "\x{701E}";
print $char; # Output: 瀞
PHP:
$char = "\x{701E}";
echo $char; // Output: 瀞
Ruby:
char = "\u{701E}"
puts char # Output: 瀞
Rust:
let c = '\u{701E}';
println!("{}", c); // Output: 瀞
Go:
char := '\u701E'
fmt.Printf("%c\n", char) // Output: 瀞
CSS:
/* CSS content property */
.element::before {
content: "\00701E"; /* 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%9E
MD5:
faa398f2e63d89e1f0be271c78772afc
SHA1:
a69b21ab26a6b30d32dafc0e14d9c8e6b97dbe33
Base64:
54Ce