C:
char c = '\u7926';
printf("%c\n", c); // Output: 礦
JavaScript:
const char = '\u7926';
console.log(char); // Output: 礦
Java:
char c = '\u7926';
System.out.println(c); // Output: 礦
JSON:
{"text": "\u7926"} // Value: 礦
Python:
char = '\u7926'
print(char) # Output: 礦
Perl:
my $char = "\x{7926}";
print $char; # Output: 礦
PHP:
$char = "\x{7926}";
echo $char; // Output: 礦
Ruby:
char = "\u{7926}"
puts char # Output: 礦
Rust:
let c = '\u{7926}';
println!("{}", c); // Output: 礦
Go:
char := '\u7926'
fmt.Printf("%c\n", char) // Output: 礦
CSS:
/* CSS content property */
.element::before {
content: "\007926"; /* 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%A6
MD5:
fcfe66460ab466ca520fe550d4ce19da
SHA1:
2aa91944efaad3622816cc0d7174b6d45366cd49
Base64:
56Sm