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