C:
char c = '\u8351';
printf("%c\n", c); // Output: 荑
JavaScript:
const char = '\u8351';
console.log(char); // Output: 荑
Java:
char c = '\u8351';
System.out.println(c); // Output: 荑
JSON:
{"text": "\u8351"} // Value: 荑
Python:
char = '\u8351'
print(char) # Output: 荑
Perl:
my $char = "\x{8351}";
print $char; # Output: 荑
PHP:
$char = "\x{8351}";
echo $char; // Output: 荑
Ruby:
char = "\u{8351}"
puts char # Output: 荑
Rust:
let c = '\u{8351}';
println!("{}", c); // Output: 荑
Go:
char := '\u8351'
fmt.Printf("%c\n", char) // Output: 荑
CSS:
/* CSS content property */
.element::before {
content: "\008351"; /* 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%8D%91
MD5:
0e7d35c539bc629ea4ff60c3cbec2fc9
SHA1:
6693f6f4ec371d55597a0906962014afb0951650
Base64:
6I2R