C:
char c = '\u8471';
printf("%c\n", c); // Output: 葱
JavaScript:
const char = '\u8471';
console.log(char); // Output: 葱
Java:
char c = '\u8471';
System.out.println(c); // Output: 葱
JSON:
{"text": "\u8471"} // Value: 葱
Python:
char = '\u8471'
print(char) # Output: 葱
Perl:
my $char = "\x{8471}";
print $char; # Output: 葱
PHP:
$char = "\x{8471}";
echo $char; // Output: 葱
Ruby:
char = "\u{8471}"
puts char # Output: 葱
Rust:
let c = '\u{8471}';
println!("{}", c); // Output: 葱
Go:
char := '\u8471'
fmt.Printf("%c\n", char) // Output: 葱
CSS:
/* CSS content property */
.element::before {
content: "\008471"; /* 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%91%B1
MD5:
d325a4ad9ddd322f32baccb334a57914
SHA1:
e263aa25e3b67a049a1da0fdbd588a688ebaf4c4
Base64:
6JGx