C:
char c = '\u8846';
printf("%c\n", c); // Output: 衆
JavaScript:
const char = '\u8846';
console.log(char); // Output: 衆
Java:
char c = '\u8846';
System.out.println(c); // Output: 衆
JSON:
{"text": "\u8846"} // Value: 衆
Python:
char = '\u8846'
print(char) # Output: 衆
Perl:
my $char = "\x{8846}";
print $char; # Output: 衆
PHP:
$char = "\x{8846}";
echo $char; // Output: 衆
Ruby:
char = "\u{8846}"
puts char # Output: 衆
Rust:
let c = '\u{8846}';
println!("{}", c); // Output: 衆
Go:
char := '\u8846'
fmt.Printf("%c\n", char) // Output: 衆
CSS:
/* CSS content property */
.element::before {
content: "\008846"; /* 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%A1%86
MD5:
78a75f0ade0a11f0a06e0c2871444b07
SHA1:
6ba8a8265899d95290507ec6cc6d290d9b5c6c43
Base64:
6KGG