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