C:
char c = '\u5365';
printf("%c\n", c); // Output: 卥
JavaScript:
const char = '\u5365';
console.log(char); // Output: 卥
Java:
char c = '\u5365';
System.out.println(c); // Output: 卥
JSON:
{"text": "\u5365"} // Value: 卥
Python:
char = '\u5365'
print(char) # Output: 卥
Perl:
my $char = "\x{5365}";
print $char; # Output: 卥
PHP:
$char = "\x{5365}";
echo $char; // Output: 卥
Ruby:
char = "\u{5365}"
puts char # Output: 卥
Rust:
let c = '\u{5365}';
println!("{}", c); // Output: 卥
Go:
char := '\u5365'
fmt.Printf("%c\n", char) // Output: 卥
CSS:
/* CSS content property */
.element::before {
content: "\005365"; /* 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%A5
MD5:
b15fb814524606729e30d74e1ef60c9f
SHA1:
53dd7fa57aea8848b73251b41ee1af3cccaa2c8e
Base64:
5Y2l