C:
char c = '\u5349';
printf("%c\n", c); // Output: 卉
JavaScript:
const char = '\u5349';
console.log(char); // Output: 卉
Java:
char c = '\u5349';
System.out.println(c); // Output: 卉
JSON:
{"text": "\u5349"} // Value: 卉
Python:
char = '\u5349'
print(char) # Output: 卉
Perl:
my $char = "\x{5349}";
print $char; # Output: 卉
PHP:
$char = "\x{5349}";
echo $char; // Output: 卉
Ruby:
char = "\u{5349}"
puts char # Output: 卉
Rust:
let c = '\u{5349}';
println!("{}", c); // Output: 卉
Go:
char := '\u5349'
fmt.Printf("%c\n", char) // Output: 卉
CSS:
/* CSS content property */
.element::before {
content: "\005349"; /* 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=%E5%8D%89
MD5:
577c943c8231af1265407e3fa5e98984
SHA1:
ad676f2be5a9b4a6221f2606a9d00416cd188e94
Base64:
5Y2J