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