C:
char c = '\u7603';
printf("%c\n", c); // Output: 瘃
JavaScript:
const char = '\u7603';
console.log(char); // Output: 瘃
Java:
char c = '\u7603';
System.out.println(c); // Output: 瘃
JSON:
{"text": "\u7603"} // Value: 瘃
Python:
char = '\u7603'
print(char) # Output: 瘃
Perl:
my $char = "\x{7603}";
print $char; # Output: 瘃
PHP:
$char = "\x{7603}";
echo $char; // Output: 瘃
Ruby:
char = "\u{7603}"
puts char # Output: 瘃
Rust:
let c = '\u{7603}';
println!("{}", c); // Output: 瘃
Go:
char := '\u7603'
fmt.Printf("%c\n", char) // Output: 瘃
CSS:
/* CSS content property */
.element::before {
content: "\007603"; /* 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%98%83
MD5:
327fa156165fa9edb2558f0d009ab275
SHA1:
4b614f39e63efc46cc21264c10d9dc401256b460
Base64:
55iD