C:
char c = '\u836A';
printf("%c\n", c); // Output: 荪
JavaScript:
const char = '\u836A';
console.log(char); // Output: 荪
Java:
char c = '\u836A';
System.out.println(c); // Output: 荪
JSON:
{"text": "\u836A"} // Value: 荪
Python:
char = '\u836A'
print(char) # Output: 荪
Perl:
my $char = "\x{836A}";
print $char; # Output: 荪
PHP:
$char = "\x{836A}";
echo $char; // Output: 荪
Ruby:
char = "\u{836A}"
puts char # Output: 荪
Rust:
let c = '\u{836A}';
println!("{}", c); // Output: 荪
Go:
char := '\u836A'
fmt.Printf("%c\n", char) // Output: 荪
CSS:
/* CSS content property */
.element::before {
content: "\00836A"; /* 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%AA
MD5:
970cf2fd51282a22adef3fdb60bccfa8
SHA1:
05dac41e79830ab6818a0cbd351b830a200f92e5
Base64:
6I2q