C:
char c = '\u5B5E';
printf("%c\n", c); // Output: 孞
JavaScript:
const char = '\u5B5E';
console.log(char); // Output: 孞
Java:
char c = '\u5B5E';
System.out.println(c); // Output: 孞
JSON:
{"text": "\u5B5E"} // Value: 孞
Python:
char = '\u5B5E'
print(char) # Output: 孞
Perl:
my $char = "\x{5B5E}";
print $char; # Output: 孞
PHP:
$char = "\x{5B5E}";
echo $char; // Output: 孞
Ruby:
char = "\u{5B5E}"
puts char # Output: 孞
Rust:
let c = '\u{5B5E}';
println!("{}", c); // Output: 孞
Go:
char := '\u5B5E'
fmt.Printf("%c\n", char) // Output: 孞
CSS:
/* CSS content property */
.element::before {
content: "\005B5E"; /* 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%AD%9E
MD5:
f7b87c511ada577d298a92098cd07d23
SHA1:
4f48b298a405262bb39359b0c0aa1df02111b75c
Base64:
5a2e