C:
char c = '\u77F3';
printf("%c\n", c); // Output: 石
JavaScript:
const char = '\u77F3';
console.log(char); // Output: 石
Java:
char c = '\u77F3';
System.out.println(c); // Output: 石
JSON:
{"text": "\u77F3"} // Value: 石
Python:
char = '\u77F3'
print(char) # Output: 石
Perl:
my $char = "\x{77F3}";
print $char; # Output: 石
PHP:
$char = "\x{77F3}";
echo $char; // Output: 石
Ruby:
char = "\u{77F3}"
puts char # Output: 石
Rust:
let c = '\u{77F3}';
println!("{}", c); // Output: 石
Go:
char := '\u77F3'
fmt.Printf("%c\n", char) // Output: 石
CSS:
/* CSS content property */
.element::before {
content: "\0077F3"; /* 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%9F%B3
MD5:
87cc016a08934341ed406f8003100b49
SHA1:
04faff8adc51c68bbda9a684260f9bd2d5183226
Base64:
55+z