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