C:
char c = '\u6393';
printf("%c\n", c); // Output: 掓
JavaScript:
const char = '\u6393';
console.log(char); // Output: 掓
Java:
char c = '\u6393';
System.out.println(c); // Output: 掓
JSON:
{"text": "\u6393"} // Value: 掓
Python:
char = '\u6393'
print(char) # Output: 掓
Perl:
my $char = "\x{6393}";
print $char; # Output: 掓
PHP:
$char = "\x{6393}";
echo $char; // Output: 掓
Ruby:
char = "\u{6393}"
puts char # Output: 掓
Rust:
let c = '\u{6393}';
println!("{}", c); // Output: 掓
Go:
char := '\u6393'
fmt.Printf("%c\n", char) // Output: 掓
CSS:
/* CSS content property */
.element::before {
content: "\006393"; /* 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%93
MD5:
d629ee294fc28334af1324ef60bb44ee
SHA1:
8c4ffab8f7f8b79953ee4a6e00b3283d6d42afc7
Base64:
5o6T