C:
char c = '\u5712';
printf("%c\n", c); // Output: 園
JavaScript:
const char = '\u5712';
console.log(char); // Output: 園
Java:
char c = '\u5712';
System.out.println(c); // Output: 園
JSON:
{"text": "\u5712"} // Value: 園
Python:
char = '\u5712'
print(char) # Output: 園
Perl:
my $char = "\x{5712}";
print $char; # Output: 園
PHP:
$char = "\x{5712}";
echo $char; // Output: 園
Ruby:
char = "\u{5712}"
puts char # Output: 園
Rust:
let c = '\u{5712}';
println!("{}", c); // Output: 園
Go:
char := '\u5712'
fmt.Printf("%c\n", char) // Output: 園
CSS:
/* CSS content property */
.element::before {
content: "\005712"; /* 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%92
MD5:
15d3d71b472efa9bbe154b7c822995a8
SHA1:
43bd88ad5a0e9af23662c2397196c223f9064ad8
Base64:
5ZyS