C:
char c = '\u7024';
printf("%c\n", c); // Output: 瀤
JavaScript:
const char = '\u7024';
console.log(char); // Output: 瀤
Java:
char c = '\u7024';
System.out.println(c); // Output: 瀤
JSON:
{"text": "\u7024"} // Value: 瀤
Python:
char = '\u7024'
print(char) # Output: 瀤
Perl:
my $char = "\x{7024}";
print $char; # Output: 瀤
PHP:
$char = "\x{7024}";
echo $char; // Output: 瀤
Ruby:
char = "\u{7024}"
puts char # Output: 瀤
Rust:
let c = '\u{7024}';
println!("{}", c); // Output: 瀤
Go:
char := '\u7024'
fmt.Printf("%c\n", char) // Output: 瀤
CSS:
/* CSS content property */
.element::before {
content: "\007024"; /* 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%A4
MD5:
3a87900e98ce0ab15cded1e3f1949bbd
SHA1:
f7352cc7bfc3f93d39261a14e9fb248d06f658c6
Base64:
54Ck