C:
char c = '\u5092';
printf("%c\n", c); // Output: 傒
JavaScript:
const char = '\u5092';
console.log(char); // Output: 傒
Java:
char c = '\u5092';
System.out.println(c); // Output: 傒
JSON:
{"text": "\u5092"} // Value: 傒
Python:
char = '\u5092'
print(char) # Output: 傒
Perl:
my $char = "\x{5092}";
print $char; # Output: 傒
PHP:
$char = "\x{5092}";
echo $char; // Output: 傒
Ruby:
char = "\u{5092}"
puts char # Output: 傒
Rust:
let c = '\u{5092}';
println!("{}", c); // Output: 傒
Go:
char := '\u5092'
fmt.Printf("%c\n", char) // Output: 傒
CSS:
/* CSS content property */
.element::before {
content: "\005092"; /* 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%92
MD5:
a71a897872734f15a4294cb84e8f5ccb
SHA1:
337bca507c0095505b9733b49e1f3a76f356e127
Base64:
5YKS