C:
char c = '\u7012';
printf("%c\n", c); // Output: 瀒
JavaScript:
const char = '\u7012';
console.log(char); // Output: 瀒
Java:
char c = '\u7012';
System.out.println(c); // Output: 瀒
JSON:
{"text": "\u7012"} // Value: 瀒
Python:
char = '\u7012'
print(char) # Output: 瀒
Perl:
my $char = "\x{7012}";
print $char; # Output: 瀒
PHP:
$char = "\x{7012}";
echo $char; // Output: 瀒
Ruby:
char = "\u{7012}"
puts char # Output: 瀒
Rust:
let c = '\u{7012}';
println!("{}", c); // Output: 瀒
Go:
char := '\u7012'
fmt.Printf("%c\n", char) // Output: 瀒
CSS:
/* CSS content property */
.element::before {
content: "\007012"; /* 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%92
MD5:
4f43b0a9b23ab3a8d79131bae814c5bf
SHA1:
86d6451908bbb094ff9c47e07ae7125e299afaf1
Base64:
54CS