C:
char c = '\u8597';
printf("%c\n", c); // Output: 薗
JavaScript:
const char = '\u8597';
console.log(char); // Output: 薗
Java:
char c = '\u8597';
System.out.println(c); // Output: 薗
JSON:
{"text": "\u8597"} // Value: 薗
Python:
char = '\u8597'
print(char) # Output: 薗
Perl:
my $char = "\x{8597}";
print $char; # Output: 薗
PHP:
$char = "\x{8597}";
echo $char; // Output: 薗
Ruby:
char = "\u{8597}"
puts char # Output: 薗
Rust:
let c = '\u{8597}';
println!("{}", c); // Output: 薗
Go:
char := '\u8597'
fmt.Printf("%c\n", char) // Output: 薗
CSS:
/* CSS content property */
.element::before {
content: "\008597"; /* 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=%E8%96%97
MD5:
3b19823d68f1ed5e0000b27197c2c27d
SHA1:
e903bb37a95ce15052e6c219c722b85dae25b65f
Base64:
6JaX