C:
char c = '\u63B7';
printf("%c\n", c); // Output: 掷
JavaScript:
const char = '\u63B7';
console.log(char); // Output: 掷
Java:
char c = '\u63B7';
System.out.println(c); // Output: 掷
JSON:
{"text": "\u63B7"} // Value: 掷
Python:
char = '\u63B7'
print(char) # Output: 掷
Perl:
my $char = "\x{63B7}";
print $char; # Output: 掷
PHP:
$char = "\x{63B7}";
echo $char; // Output: 掷
Ruby:
char = "\u{63B7}"
puts char # Output: 掷
Rust:
let c = '\u{63B7}';
println!("{}", c); // Output: 掷
Go:
char := '\u63B7'
fmt.Printf("%c\n", char) // Output: 掷
CSS:
/* CSS content property */
.element::before {
content: "\0063B7"; /* 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=%E6%8E%B7
MD5:
d680930364af0dc2574ac84f8d0480fc
SHA1:
6e659a95e73b52fca1dd665b3bf2c4c125e13bee
Base64:
5o63