C:
char c = '\u5B8C';
printf("%c\n", c); // Output: 完
JavaScript:
const char = '\u5B8C';
console.log(char); // Output: 完
Java:
char c = '\u5B8C';
System.out.println(c); // Output: 完
JSON:
{"text": "\u5B8C"} // Value: 完
Python:
char = '\u5B8C'
print(char) # Output: 完
Perl:
my $char = "\x{5B8C}";
print $char; # Output: 完
PHP:
$char = "\x{5B8C}";
echo $char; // Output: 完
Ruby:
char = "\u{5B8C}"
puts char # Output: 完
Rust:
let c = '\u{5B8C}';
println!("{}", c); // Output: 完
Go:
char := '\u5B8C'
fmt.Printf("%c\n", char) // Output: 完
CSS:
/* CSS content property */
.element::before {
content: "\005B8C"; /* 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=%E5%AE%8C
MD5:
68b6c8104e083796eab2b6e69c51ce15
SHA1:
08300957760bf693052d622aa3a78d001dc6e2f7
Base64:
5a6M