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