C:
char c = '\u5B46';
printf("%c\n", c); // Output: 孆
JavaScript:
const char = '\u5B46';
console.log(char); // Output: 孆
Java:
char c = '\u5B46';
System.out.println(c); // Output: 孆
JSON:
{"text": "\u5B46"} // Value: 孆
Python:
char = '\u5B46'
print(char) # Output: 孆
Perl:
my $char = "\x{5B46}";
print $char; # Output: 孆
PHP:
$char = "\x{5B46}";
echo $char; // Output: 孆
Ruby:
char = "\u{5B46}"
puts char # Output: 孆
Rust:
let c = '\u{5B46}';
println!("{}", c); // Output: 孆
Go:
char := '\u5B46'
fmt.Printf("%c\n", char) // Output: 孆
CSS:
/* CSS content property */
.element::before {
content: "\005B46"; /* 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%86
MD5:
4777c985aa8a8586d7ef31c7c177a93e
SHA1:
08587b3c67e12af5786768e733406122aa8fa478
Base64:
5a2G