C:
char c = '\u5F21';
printf("%c\n", c); // Output: 弡
JavaScript:
const char = '\u5F21';
console.log(char); // Output: 弡
Java:
char c = '\u5F21';
System.out.println(c); // Output: 弡
JSON:
{"text": "\u5F21"} // Value: 弡
Python:
char = '\u5F21'
print(char) # Output: 弡
Perl:
my $char = "\x{5F21}";
print $char; # Output: 弡
PHP:
$char = "\x{5F21}";
echo $char; // Output: 弡
Ruby:
char = "\u{5F21}"
puts char # Output: 弡
Rust:
let c = '\u{5F21}';
println!("{}", c); // Output: 弡
Go:
char := '\u5F21'
fmt.Printf("%c\n", char) // Output: 弡
CSS:
/* CSS content property */
.element::before {
content: "\005F21"; /* 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%BC%A1
MD5:
6db8bc49e8d7f15563420699be0475db
SHA1:
7f41befa95f60a34a90d27707d5403f0756ebd49
Base64:
5byh