C:
char c = '\u7912';
printf("%c\n", c); // Output: 礒
JavaScript:
const char = '\u7912';
console.log(char); // Output: 礒
Java:
char c = '\u7912';
System.out.println(c); // Output: 礒
JSON:
{"text": "\u7912"} // Value: 礒
Python:
char = '\u7912'
print(char) # Output: 礒
Perl:
my $char = "\x{7912}";
print $char; # Output: 礒
PHP:
$char = "\x{7912}";
echo $char; // Output: 礒
Ruby:
char = "\u{7912}"
puts char # Output: 礒
Rust:
let c = '\u{7912}';
println!("{}", c); // Output: 礒
Go:
char := '\u7912'
fmt.Printf("%c\n", char) // Output: 礒
CSS:
/* CSS content property */
.element::before {
content: "\007912"; /* 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%92
MD5:
28068b652ca309edc6b618a6dfca484c
SHA1:
9430fc38881bed51dafbd3100b30fc8f43683ded
Base64:
56SS