C:
char c = '\u5093';
printf("%c\n", c); // Output: 傓
JavaScript:
const char = '\u5093';
console.log(char); // Output: 傓
Java:
char c = '\u5093';
System.out.println(c); // Output: 傓
JSON:
{"text": "\u5093"} // Value: 傓
Python:
char = '\u5093'
print(char) # Output: 傓
Perl:
my $char = "\x{5093}";
print $char; # Output: 傓
PHP:
$char = "\x{5093}";
echo $char; // Output: 傓
Ruby:
char = "\u{5093}"
puts char # Output: 傓
Rust:
let c = '\u{5093}';
println!("{}", c); // Output: 傓
Go:
char := '\u5093'
fmt.Printf("%c\n", char) // Output: 傓
CSS:
/* CSS content property */
.element::before {
content: "\005093"; /* 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%82%93
MD5:
0380f76f1736e3040cc466f9d2ad0001
SHA1:
af1db7cd4ebaec560e2bc970832f0714a6d9c070
Base64:
5YKT