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