C:
char c = '\u6354';
printf("%c\n", c); // Output: 捔
JavaScript:
const char = '\u6354';
console.log(char); // Output: 捔
Java:
char c = '\u6354';
System.out.println(c); // Output: 捔
JSON:
{"text": "\u6354"} // Value: 捔
Python:
char = '\u6354'
print(char) # Output: 捔
Perl:
my $char = "\x{6354}";
print $char; # Output: 捔
PHP:
$char = "\x{6354}";
echo $char; // Output: 捔
Ruby:
char = "\u{6354}"
puts char # Output: 捔
Rust:
let c = '\u{6354}';
println!("{}", c); // Output: 捔
Go:
char := '\u6354'
fmt.Printf("%c\n", char) // Output: 捔
CSS:
/* CSS content property */
.element::before {
content: "\006354"; /* 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%8D%94
MD5:
18f9923bba7db71b865ccac1ea005b7f
SHA1:
c2f9bad180f4e833026365d628dd372d49b4d5dd
Base64:
5o2U