C:
char c = '\u8593';
printf("%c\n", c); // Output: 薓
JavaScript:
const char = '\u8593';
console.log(char); // Output: 薓
Java:
char c = '\u8593';
System.out.println(c); // Output: 薓
JSON:
{"text": "\u8593"} // Value: 薓
Python:
char = '\u8593'
print(char) # Output: 薓
Perl:
my $char = "\x{8593}";
print $char; # Output: 薓
PHP:
$char = "\x{8593}";
echo $char; // Output: 薓
Ruby:
char = "\u{8593}"
puts char # Output: 薓
Rust:
let c = '\u{8593}';
println!("{}", c); // Output: 薓
Go:
char := '\u8593'
fmt.Printf("%c\n", char) // Output: 薓
CSS:
/* CSS content property */
.element::before {
content: "\008593"; /* 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%93
MD5:
bea9640a5b65f2606755bde8cecdf112
SHA1:
f2ae45cc6ec8af24332208b0fde3767898b69dae
Base64:
6JaT