C:
char c = '\u5B7E';
printf("%c\n", c); // Output: 孾
JavaScript:
const char = '\u5B7E';
console.log(char); // Output: 孾
Java:
char c = '\u5B7E';
System.out.println(c); // Output: 孾
JSON:
{"text": "\u5B7E"} // Value: 孾
Python:
char = '\u5B7E'
print(char) # Output: 孾
Perl:
my $char = "\x{5B7E}";
print $char; # Output: 孾
PHP:
$char = "\x{5B7E}";
echo $char; // Output: 孾
Ruby:
char = "\u{5B7E}"
puts char # Output: 孾
Rust:
let c = '\u{5B7E}';
println!("{}", c); // Output: 孾
Go:
char := '\u5B7E'
fmt.Printf("%c\n", char) // Output: 孾
CSS:
/* CSS content property */
.element::before {
content: "\005B7E"; /* 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%BE
MD5:
f93af6f76c7beff88dcd860b56788871
SHA1:
62076c6b2a85014dc96b552ce7ab8f9e1dc3b127
Base64:
5a2+