C:
char c = '\u7915';
printf("%c\n", c); // Output: 礕
JavaScript:
const char = '\u7915';
console.log(char); // Output: 礕
Java:
char c = '\u7915';
System.out.println(c); // Output: 礕
JSON:
{"text": "\u7915"} // Value: 礕
Python:
char = '\u7915'
print(char) # Output: 礕
Perl:
my $char = "\x{7915}";
print $char; # Output: 礕
PHP:
$char = "\x{7915}";
echo $char; // Output: 礕
Ruby:
char = "\u{7915}"
puts char # Output: 礕
Rust:
let c = '\u{7915}';
println!("{}", c); // Output: 礕
Go:
char := '\u7915'
fmt.Printf("%c\n", char) // Output: 礕
CSS:
/* CSS content property */
.element::before {
content: "\007915"; /* 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%A4%95
MD5:
2aad94fd4fe04a8ecdd3f70683081f22
SHA1:
138574ca9cdd536af96a8f3545ff7a6a02a02823
Base64:
56SV