C:
char c = '\u5031';
printf("%c\n", c); // Output: 倱
JavaScript:
const char = '\u5031';
console.log(char); // Output: 倱
Java:
char c = '\u5031';
System.out.println(c); // Output: 倱
JSON:
{"text": "\u5031"} // Value: 倱
Python:
char = '\u5031'
print(char) # Output: 倱
Perl:
my $char = "\x{5031}";
print $char; # Output: 倱
PHP:
$char = "\x{5031}";
echo $char; // Output: 倱
Ruby:
char = "\u{5031}"
puts char # Output: 倱
Rust:
let c = '\u{5031}';
println!("{}", c); // Output: 倱
Go:
char := '\u5031'
fmt.Printf("%c\n", char) // Output: 倱
CSS:
/* CSS content property */
.element::before {
content: "\005031"; /* 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%80%B1
MD5:
44099139da25427e47892db97c93dda0
SHA1:
be9e1b6d9ecf6e1b31adec9cca9c42d10b632c69
Base64:
5YCx