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