C:
char c = '\u849C';
printf("%c\n", c); // Output: 蒜
JavaScript:
const char = '\u849C';
console.log(char); // Output: 蒜
Java:
char c = '\u849C';
System.out.println(c); // Output: 蒜
JSON:
{"text": "\u849C"} // Value: 蒜
Python:
char = '\u849C'
print(char) # Output: 蒜
Perl:
my $char = "\x{849C}";
print $char; # Output: 蒜
PHP:
$char = "\x{849C}";
echo $char; // Output: 蒜
Ruby:
char = "\u{849C}"
puts char # Output: 蒜
Rust:
let c = '\u{849C}';
println!("{}", c); // Output: 蒜
Go:
char := '\u849C'
fmt.Printf("%c\n", char) // Output: 蒜
CSS:
/* CSS content property */
.element::before {
content: "\00849C"; /* 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%92%9C
MD5:
61adce7365d2639b047206d09d916e5c
SHA1:
e85895ea1bfee3bb3bd009883b047f9c800dfc2e
Base64:
6JKc