C:
char c = '\u5703';
printf("%c\n", c); // Output: 圃
JavaScript:
const char = '\u5703';
console.log(char); // Output: 圃
Java:
char c = '\u5703';
System.out.println(c); // Output: 圃
JSON:
{"text": "\u5703"} // Value: 圃
Python:
char = '\u5703'
print(char) # Output: 圃
Perl:
my $char = "\x{5703}";
print $char; # Output: 圃
PHP:
$char = "\x{5703}";
echo $char; // Output: 圃
Ruby:
char = "\u{5703}"
puts char # Output: 圃
Rust:
let c = '\u{5703}';
println!("{}", c); // Output: 圃
Go:
char := '\u5703'
fmt.Printf("%c\n", char) // Output: 圃
CSS:
/* CSS content property */
.element::before {
content: "\005703"; /* 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%83
MD5:
5a0fa2d27ce6b6e066c71472d4673300
SHA1:
f606658c9b97c5c0d3925d33e538f1de0fe5fca6
Base64:
5ZyD