C:
char c = '\u8350';
printf("%c\n", c); // Output: 荐
JavaScript:
const char = '\u8350';
console.log(char); // Output: 荐
Java:
char c = '\u8350';
System.out.println(c); // Output: 荐
JSON:
{"text": "\u8350"} // Value: 荐
Python:
char = '\u8350'
print(char) # Output: 荐
Perl:
my $char = "\x{8350}";
print $char; # Output: 荐
PHP:
$char = "\x{8350}";
echo $char; // Output: 荐
Ruby:
char = "\u{8350}"
puts char # Output: 荐
Rust:
let c = '\u{8350}';
println!("{}", c); // Output: 荐
Go:
char := '\u8350'
fmt.Printf("%c\n", char) // Output: 荐
CSS:
/* CSS content property */
.element::before {
content: "\008350"; /* 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%90
MD5:
d9ebe0a6e923594278ce3fa6dad9e42e
SHA1:
364bd549e49ca1592ef4d40977565ef5ef05ef7d
Base64:
6I2Q