C:
char c = '\u7801';
printf("%c\n", c); // Output: 码
JavaScript:
const char = '\u7801';
console.log(char); // Output: 码
Java:
char c = '\u7801';
System.out.println(c); // Output: 码
JSON:
{"text": "\u7801"} // Value: 码
Python:
char = '\u7801'
print(char) # Output: 码
Perl:
my $char = "\x{7801}";
print $char; # Output: 码
PHP:
$char = "\x{7801}";
echo $char; // Output: 码
Ruby:
char = "\u{7801}"
puts char # Output: 码
Rust:
let c = '\u{7801}';
println!("{}", c); // Output: 码
Go:
char := '\u7801'
fmt.Printf("%c\n", char) // Output: 码
CSS:
/* CSS content property */
.element::before {
content: "\007801"; /* 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=%E7%A0%81
MD5:
2fbf8ccf779bfeb8f6469442f927ad17
SHA1:
a6dfd7d7a7c48d0b8fe86ba6ad4ffb157083f802
Base64:
56CB