C:
char c = '\u51C8';
printf("%c\n", c); // Output: 凈
JavaScript:
const char = '\u51C8';
console.log(char); // Output: 凈
Java:
char c = '\u51C8';
System.out.println(c); // Output: 凈
JSON:
{"text": "\u51C8"} // Value: 凈
Python:
char = '\u51C8'
print(char) # Output: 凈
Perl:
my $char = "\x{51C8}";
print $char; # Output: 凈
PHP:
$char = "\x{51C8}";
echo $char; // Output: 凈
Ruby:
char = "\u{51C8}"
puts char # Output: 凈
Rust:
let c = '\u{51C8}';
println!("{}", c); // Output: 凈
Go:
char := '\u51C8'
fmt.Printf("%c\n", char) // Output: 凈
CSS:
/* CSS content property */
.element::before {
content: "\0051C8"; /* 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%87%88
MD5:
e588378b208782f1f457b625a091d6d7
SHA1:
2eab08d36618f62e5f261671c821dcc3516102c8
Base64:
5YeI