C:
char c = '\u76C6';
printf("%c\n", c); // Output: 盆
JavaScript:
const char = '\u76C6';
console.log(char); // Output: 盆
Java:
char c = '\u76C6';
System.out.println(c); // Output: 盆
JSON:
{"text": "\u76C6"} // Value: 盆
Python:
char = '\u76C6'
print(char) # Output: 盆
Perl:
my $char = "\x{76C6}";
print $char; # Output: 盆
PHP:
$char = "\x{76C6}";
echo $char; // Output: 盆
Ruby:
char = "\u{76C6}"
puts char # Output: 盆
Rust:
let c = '\u{76C6}';
println!("{}", c); // Output: 盆
Go:
char := '\u76C6'
fmt.Printf("%c\n", char) // Output: 盆
CSS:
/* CSS content property */
.element::before {
content: "\0076C6"; /* 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=%E7%9B%86
MD5:
fd9d7ebd57ed44fe3c9473116cab79b3
SHA1:
1b0970d2178ba148fc9d2503dc722b4e3da28990
Base64:
55uG