C:
char c = '\u850B';
printf("%c\n", c); // Output: 蔋
JavaScript:
const char = '\u850B';
console.log(char); // Output: 蔋
Java:
char c = '\u850B';
System.out.println(c); // Output: 蔋
JSON:
{"text": "\u850B"} // Value: 蔋
Python:
char = '\u850B'
print(char) # Output: 蔋
Perl:
my $char = "\x{850B}";
print $char; # Output: 蔋
PHP:
$char = "\x{850B}";
echo $char; // Output: 蔋
Ruby:
char = "\u{850B}"
puts char # Output: 蔋
Rust:
let c = '\u{850B}';
println!("{}", c); // Output: 蔋
Go:
char := '\u850B'
fmt.Printf("%c\n", char) // Output: 蔋
CSS:
/* CSS content property */
.element::before {
content: "\00850B"; /* 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%8B
MD5:
5f2ad1ca477c2e26a576e176706e5416
SHA1:
1e49f381719f2c10e6c83d08ff4079879a0f795d
Base64:
6JSL