C:
char c = '\u5418';
printf("%c\n", c); // Output: 吘
JavaScript:
const char = '\u5418';
console.log(char); // Output: 吘
Java:
char c = '\u5418';
System.out.println(c); // Output: 吘
JSON:
{"text": "\u5418"} // Value: 吘
Python:
char = '\u5418'
print(char) # Output: 吘
Perl:
my $char = "\x{5418}";
print $char; # Output: 吘
PHP:
$char = "\x{5418}";
echo $char; // Output: 吘
Ruby:
char = "\u{5418}"
puts char # Output: 吘
Rust:
let c = '\u{5418}';
println!("{}", c); // Output: 吘
Go:
char := '\u5418'
fmt.Printf("%c\n", char) // Output: 吘
CSS:
/* CSS content property */
.element::before {
content: "\005418"; /* 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%90%98
MD5:
0d8c955b7646355c9dfc955476c5fad3
SHA1:
c45c00da790f0715820bfd748890e7f3d2f99640
Base64:
5ZCY