C:
char c = '\u7008';
printf("%c\n", c); // Output: 瀈
JavaScript:
const char = '\u7008';
console.log(char); // Output: 瀈
Java:
char c = '\u7008';
System.out.println(c); // Output: 瀈
JSON:
{"text": "\u7008"} // Value: 瀈
Python:
char = '\u7008'
print(char) # Output: 瀈
Perl:
my $char = "\x{7008}";
print $char; # Output: 瀈
PHP:
$char = "\x{7008}";
echo $char; // Output: 瀈
Ruby:
char = "\u{7008}"
puts char # Output: 瀈
Rust:
let c = '\u{7008}';
println!("{}", c); // Output: 瀈
Go:
char := '\u7008'
fmt.Printf("%c\n", char) // Output: 瀈
CSS:
/* CSS content property */
.element::before {
content: "\007008"; /* 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%88
MD5:
b193e099da8109cc9bf24ce9f7742acd
SHA1:
17bf7fa7c82fff89b8f8e65ca99bc517c577841a
Base64:
54CI