C:
char c = '\u7463';
printf("%c\n", c); // Output: 瑣
JavaScript:
const char = '\u7463';
console.log(char); // Output: 瑣
Java:
char c = '\u7463';
System.out.println(c); // Output: 瑣
JSON:
{"text": "\u7463"} // Value: 瑣
Python:
char = '\u7463'
print(char) # Output: 瑣
Perl:
my $char = "\x{7463}";
print $char; # Output: 瑣
PHP:
$char = "\x{7463}";
echo $char; // Output: 瑣
Ruby:
char = "\u{7463}"
puts char # Output: 瑣
Rust:
let c = '\u{7463}';
println!("{}", c); // Output: 瑣
Go:
char := '\u7463'
fmt.Printf("%c\n", char) // Output: 瑣
CSS:
/* CSS content property */
.element::before {
content: "\007463"; /* 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%91%A3
MD5:
5bf6e64ba1f074082afb4e3dae02762d
SHA1:
58dc9ffa7100ee76e137c7d59e891f39685bfb74
Base64:
55Gj