C:
char c = '\u8586';
printf("%c\n", c); // Output: 薆
JavaScript:
const char = '\u8586';
console.log(char); // Output: 薆
Java:
char c = '\u8586';
System.out.println(c); // Output: 薆
JSON:
{"text": "\u8586"} // Value: 薆
Python:
char = '\u8586'
print(char) # Output: 薆
Perl:
my $char = "\x{8586}";
print $char; # Output: 薆
PHP:
$char = "\x{8586}";
echo $char; // Output: 薆
Ruby:
char = "\u{8586}"
puts char # Output: 薆
Rust:
let c = '\u{8586}';
println!("{}", c); // Output: 薆
Go:
char := '\u8586'
fmt.Printf("%c\n", char) // Output: 薆
CSS:
/* CSS content property */
.element::before {
content: "\008586"; /* 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%86
MD5:
76fc03f7fdad37c0eafd5a84487aa010
SHA1:
f4b9aeccc5d7ec5b268f1e6906f7345443e1b257
Base64:
6JaG