C:
char c = '\u5369';
printf("%c\n", c); // Output: 卩
JavaScript:
const char = '\u5369';
console.log(char); // Output: 卩
Java:
char c = '\u5369';
System.out.println(c); // Output: 卩
JSON:
{"text": "\u5369"} // Value: 卩
Python:
char = '\u5369'
print(char) # Output: 卩
Perl:
my $char = "\x{5369}";
print $char; # Output: 卩
PHP:
$char = "\x{5369}";
echo $char; // Output: 卩
Ruby:
char = "\u{5369}"
puts char # Output: 卩
Rust:
let c = '\u{5369}';
println!("{}", c); // Output: 卩
Go:
char := '\u5369'
fmt.Printf("%c\n", char) // Output: 卩
CSS:
/* CSS content property */
.element::before {
content: "\005369"; /* 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%8D%A9
MD5:
c3571ceb6ea8376acc0bcbd9fb8e5a8c
SHA1:
aefea93841d957657ad5a9195143adc6a4b15f9b
Base64:
5Y2p