C:
char c = '\u5DCD';
printf("%c\n", c); // Output: 巍
JavaScript:
const char = '\u5DCD';
console.log(char); // Output: 巍
Java:
char c = '\u5DCD';
System.out.println(c); // Output: 巍
JSON:
{"text": "\u5DCD"} // Value: 巍
Python:
char = '\u5DCD'
print(char) # Output: 巍
Perl:
my $char = "\x{5DCD}";
print $char; # Output: 巍
PHP:
$char = "\x{5DCD}";
echo $char; // Output: 巍
Ruby:
char = "\u{5DCD}"
puts char # Output: 巍
Rust:
let c = '\u{5DCD}';
println!("{}", c); // Output: 巍
Go:
char := '\u5DCD'
fmt.Printf("%c\n", char) // Output: 巍
CSS:
/* CSS content property */
.element::before {
content: "\005DCD"; /* 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%B7%8D
MD5:
656cfa60882e82111919791a058f0669
SHA1:
c2ac7063466b83d23f0c3b9e8abaec446106ff15
Base64:
5beN