C:
char c = '\u5BCF';
printf("%c\n", c); // Output: 寏
JavaScript:
const char = '\u5BCF';
console.log(char); // Output: 寏
Java:
char c = '\u5BCF';
System.out.println(c); // Output: 寏
JSON:
{"text": "\u5BCF"} // Value: 寏
Python:
char = '\u5BCF'
print(char) # Output: 寏
Perl:
my $char = "\x{5BCF}";
print $char; # Output: 寏
PHP:
$char = "\x{5BCF}";
echo $char; // Output: 寏
Ruby:
char = "\u{5BCF}"
puts char # Output: 寏
Rust:
let c = '\u{5BCF}';
println!("{}", c); // Output: 寏
Go:
char := '\u5BCF'
fmt.Printf("%c\n", char) // Output: 寏
CSS:
/* CSS content property */
.element::before {
content: "\005BCF"; /* 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%AF%8F
MD5:
569acb8a2f90dd154e5fef4f0ea25a90
SHA1:
7f8cd52156682324e6d8ba41b394260229f46332
Base64:
5a+P