C:
char c = '\u5001';
printf("%c\n", c); // Output: 倁
JavaScript:
const char = '\u5001';
console.log(char); // Output: 倁
Java:
char c = '\u5001';
System.out.println(c); // Output: 倁
JSON:
{"text": "\u5001"} // Value: 倁
Python:
char = '\u5001'
print(char) # Output: 倁
Perl:
my $char = "\x{5001}";
print $char; # Output: 倁
PHP:
$char = "\x{5001}";
echo $char; // Output: 倁
Ruby:
char = "\u{5001}"
puts char # Output: 倁
Rust:
let c = '\u{5001}';
println!("{}", c); // Output: 倁
Go:
char := '\u5001'
fmt.Printf("%c\n", char) // Output: 倁
CSS:
/* CSS content property */
.element::before {
content: "\005001"; /* 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%80%81
MD5:
74fd135de8eea211a945a9638ad14a77
SHA1:
f8fe7378888161235289708e89c750994750aad5
Base64:
5YCB