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