C:
char c = '\u8525';
printf("%c\n", c); // Output: 蔥
JavaScript:
const char = '\u8525';
console.log(char); // Output: 蔥
Java:
char c = '\u8525';
System.out.println(c); // Output: 蔥
JSON:
{"text": "\u8525"} // Value: 蔥
Python:
char = '\u8525'
print(char) # Output: 蔥
Perl:
my $char = "\x{8525}";
print $char; # Output: 蔥
PHP:
$char = "\x{8525}";
echo $char; // Output: 蔥
Ruby:
char = "\u{8525}"
puts char # Output: 蔥
Rust:
let c = '\u{8525}';
println!("{}", c); // Output: 蔥
Go:
char := '\u8525'
fmt.Printf("%c\n", char) // Output: 蔥
CSS:
/* CSS content property */
.element::before {
content: "\008525"; /* 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%94%A5
MD5:
1c22cfd293806240f2e9b5dd9b49cbb7
SHA1:
e3c0bcba6c6c576bed4af9f0c05a9da42b6baa4d
Base64:
6JSl