C:
char c = '\u7449';
printf("%c\n", c); // Output: 瑉
JavaScript:
const char = '\u7449';
console.log(char); // Output: 瑉
Java:
char c = '\u7449';
System.out.println(c); // Output: 瑉
JSON:
{"text": "\u7449"} // Value: 瑉
Python:
char = '\u7449'
print(char) # Output: 瑉
Perl:
my $char = "\x{7449}";
print $char; # Output: 瑉
PHP:
$char = "\x{7449}";
echo $char; // Output: 瑉
Ruby:
char = "\u{7449}"
puts char # Output: 瑉
Rust:
let c = '\u{7449}';
println!("{}", c); // Output: 瑉
Go:
char := '\u7449'
fmt.Printf("%c\n", char) // Output: 瑉
CSS:
/* CSS content property */
.element::before {
content: "\007449"; /* 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%89
MD5:
f231a2d96bb98787a4d471987a54c52c
SHA1:
dcdff4888ea88c9b54b21c6ea88998af7f1b3228
Base64:
55GJ