C:
char c = '\u6863';
printf("%c\n", c); // Output: 档
JavaScript:
const char = '\u6863';
console.log(char); // Output: 档
Java:
char c = '\u6863';
System.out.println(c); // Output: 档
JSON:
{"text": "\u6863"} // Value: 档
Python:
char = '\u6863'
print(char) # Output: 档
Perl:
my $char = "\x{6863}";
print $char; # Output: 档
PHP:
$char = "\x{6863}";
echo $char; // Output: 档
Ruby:
char = "\u{6863}"
puts char # Output: 档
Rust:
let c = '\u{6863}';
println!("{}", c); // Output: 档
Go:
char := '\u6863'
fmt.Printf("%c\n", char) // Output: 档
CSS:
/* CSS content property */
.element::before {
content: "\006863"; /* 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%A1%A3
MD5:
7ce8d61c4a2b53493dd1bc01d157a8f5
SHA1:
e41b05975c48929b6666eb1df4e849c25a677791
Base64:
5qGj