C:
char c = '\u792A';
printf("%c\n", c); // Output: 礪
JavaScript:
const char = '\u792A';
console.log(char); // Output: 礪
Java:
char c = '\u792A';
System.out.println(c); // Output: 礪
JSON:
{"text": "\u792A"} // Value: 礪
Python:
char = '\u792A'
print(char) # Output: 礪
Perl:
my $char = "\x{792A}";
print $char; # Output: 礪
PHP:
$char = "\x{792A}";
echo $char; // Output: 礪
Ruby:
char = "\u{792A}"
puts char # Output: 礪
Rust:
let c = '\u{792A}';
println!("{}", c); // Output: 礪
Go:
char := '\u792A'
fmt.Printf("%c\n", char) // Output: 礪
CSS:
/* CSS content property */
.element::before {
content: "\00792A"; /* 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%AA
MD5:
e771385b9c7b320247860b4630dffe01
SHA1:
6eef3f67279b7f03c00d434e30c25786f78529c6
Base64:
56Sq