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