C:
char c = '\u7918';
printf("%c\n", c); // Output: 礘
JavaScript:
const char = '\u7918';
console.log(char); // Output: 礘
Java:
char c = '\u7918';
System.out.println(c); // Output: 礘
JSON:
{"text": "\u7918"} // Value: 礘
Python:
char = '\u7918'
print(char) # Output: 礘
Perl:
my $char = "\x{7918}";
print $char; # Output: 礘
PHP:
$char = "\x{7918}";
echo $char; // Output: 礘
Ruby:
char = "\u{7918}"
puts char # Output: 礘
Rust:
let c = '\u{7918}';
println!("{}", c); // Output: 礘
Go:
char := '\u7918'
fmt.Printf("%c\n", char) // Output: 礘
CSS:
/* CSS content property */
.element::before {
content: "\007918"; /* 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%98
MD5:
974e8d8c621f0e5a5c75fd7a24b99c17
SHA1:
01fb6b133f936ff5d5ee5197c183c0e0960a2b6e
Base64:
56SY