C:
char c = '\u7026';
printf("%c\n", c); // Output: 瀦
JavaScript:
const char = '\u7026';
console.log(char); // Output: 瀦
Java:
char c = '\u7026';
System.out.println(c); // Output: 瀦
JSON:
{"text": "\u7026"} // Value: 瀦
Python:
char = '\u7026'
print(char) # Output: 瀦
Perl:
my $char = "\x{7026}";
print $char; # Output: 瀦
PHP:
$char = "\x{7026}";
echo $char; // Output: 瀦
Ruby:
char = "\u{7026}"
puts char # Output: 瀦
Rust:
let c = '\u{7026}';
println!("{}", c); // Output: 瀦
Go:
char := '\u7026'
fmt.Printf("%c\n", char) // Output: 瀦
CSS:
/* CSS content property */
.element::before {
content: "\007026"; /* 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%A6
MD5:
6fdd0f9b2e81c927daac0a60b24095ca
SHA1:
e36cc9bf807ba8a51ce1bd35628061b4fb9ba303
Base64:
54Cm