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