C:
char c = '\u8596';
printf("%c\n", c); // Output: 薖
JavaScript:
const char = '\u8596';
console.log(char); // Output: 薖
Java:
char c = '\u8596';
System.out.println(c); // Output: 薖
JSON:
{"text": "\u8596"} // Value: 薖
Python:
char = '\u8596'
print(char) # Output: 薖
Perl:
my $char = "\x{8596}";
print $char; # Output: 薖
PHP:
$char = "\x{8596}";
echo $char; // Output: 薖
Ruby:
char = "\u{8596}"
puts char # Output: 薖
Rust:
let c = '\u{8596}';
println!("{}", c); // Output: 薖
Go:
char := '\u8596'
fmt.Printf("%c\n", char) // Output: 薖
CSS:
/* CSS content property */
.element::before {
content: "\008596"; /* 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%96
MD5:
6f9884115ae37efda31665765af3e5cc
SHA1:
3512759323195934a961ad80f3605e551abe41bb
Base64:
6JaW