C:
char c = '\u5729';
printf("%c\n", c); // Output: 圩
JavaScript:
const char = '\u5729';
console.log(char); // Output: 圩
Java:
char c = '\u5729';
System.out.println(c); // Output: 圩
JSON:
{"text": "\u5729"} // Value: 圩
Python:
char = '\u5729'
print(char) # Output: 圩
Perl:
my $char = "\x{5729}";
print $char; # Output: 圩
PHP:
$char = "\x{5729}";
echo $char; // Output: 圩
Ruby:
char = "\u{5729}"
puts char # Output: 圩
Rust:
let c = '\u{5729}';
println!("{}", c); // Output: 圩
Go:
char := '\u5729'
fmt.Printf("%c\n", char) // Output: 圩
CSS:
/* CSS content property */
.element::before {
content: "\005729"; /* 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%9C%A9
MD5:
d94d50de13a1b16f425a4663bfa3fd19
SHA1:
2df9f40a373a72be051688a97f7f0239e8da2697
Base64:
5Zyp