C:
char c = '\u8581';
printf("%c\n", c); // Output: 薁
JavaScript:
const char = '\u8581';
console.log(char); // Output: 薁
Java:
char c = '\u8581';
System.out.println(c); // Output: 薁
JSON:
{"text": "\u8581"} // Value: 薁
Python:
char = '\u8581'
print(char) # Output: 薁
Perl:
my $char = "\x{8581}";
print $char; # Output: 薁
PHP:
$char = "\x{8581}";
echo $char; // Output: 薁
Ruby:
char = "\u{8581}"
puts char # Output: 薁
Rust:
let c = '\u{8581}';
println!("{}", c); // Output: 薁
Go:
char := '\u8581'
fmt.Printf("%c\n", char) // Output: 薁
CSS:
/* CSS content property */
.element::before {
content: "\008581"; /* 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%81
MD5:
95e9ede8868f06ee5c342e3f5d2f8b42
SHA1:
9c77310824e265633261e28c82b3be84ec1daee5
Base64:
6JaB