C:
char c = '\u8582';
printf("%c\n", c); // Output: 薂
JavaScript:
const char = '\u8582';
console.log(char); // Output: 薂
Java:
char c = '\u8582';
System.out.println(c); // Output: 薂
JSON:
{"text": "\u8582"} // Value: 薂
Python:
char = '\u8582'
print(char) # Output: 薂
Perl:
my $char = "\x{8582}";
print $char; # Output: 薂
PHP:
$char = "\x{8582}";
echo $char; // Output: 薂
Ruby:
char = "\u{8582}"
puts char # Output: 薂
Rust:
let c = '\u{8582}';
println!("{}", c); // Output: 薂
Go:
char := '\u8582'
fmt.Printf("%c\n", char) // Output: 薂
CSS:
/* CSS content property */
.element::before {
content: "\008582"; /* 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%82
MD5:
2eba1d461c3f541a3face3bdd1682270
SHA1:
1737436812f036077713bdefe30baf82e1ff0017
Base64:
6JaC