C:
char c = '\u8583';
printf("%c\n", c); // Output: 薃
JavaScript:
const char = '\u8583';
console.log(char); // Output: 薃
Java:
char c = '\u8583';
System.out.println(c); // Output: 薃
JSON:
{"text": "\u8583"} // Value: 薃
Python:
char = '\u8583'
print(char) # Output: 薃
Perl:
my $char = "\x{8583}";
print $char; # Output: 薃
PHP:
$char = "\x{8583}";
echo $char; // Output: 薃
Ruby:
char = "\u{8583}"
puts char # Output: 薃
Rust:
let c = '\u{8583}';
println!("{}", c); // Output: 薃
Go:
char := '\u8583'
fmt.Printf("%c\n", char) // Output: 薃
CSS:
/* CSS content property */
.element::before {
content: "\008583"; /* 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%83
MD5:
07448fa607ff2d1064bfe0043264e69e
SHA1:
91b28bdfe93dbd567b1e358fa62eb39af0164fa1
Base64:
6JaD