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