C:
char c = '\u5033';
printf("%c\n", c); // Output: 倳
JavaScript:
const char = '\u5033';
console.log(char); // Output: 倳
Java:
char c = '\u5033';
System.out.println(c); // Output: 倳
JSON:
{"text": "\u5033"} // Value: 倳
Python:
char = '\u5033'
print(char) # Output: 倳
Perl:
my $char = "\x{5033}";
print $char; # Output: 倳
PHP:
$char = "\x{5033}";
echo $char; // Output: 倳
Ruby:
char = "\u{5033}"
puts char # Output: 倳
Rust:
let c = '\u{5033}';
println!("{}", c); // Output: 倳
Go:
char := '\u5033'
fmt.Printf("%c\n", char) // Output: 倳
CSS:
/* CSS content property */
.element::before {
content: "\005033"; /* 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%B3
MD5:
a12519871da8ad2ea9a955fefc8f543f
SHA1:
1e2f3b0beaed55c2a5d169ce0c2ad4df15aea069
Base64:
5YCz