C:
char c = '\u5094';
printf("%c\n", c); // Output: 傔
JavaScript:
const char = '\u5094';
console.log(char); // Output: 傔
Java:
char c = '\u5094';
System.out.println(c); // Output: 傔
JSON:
{"text": "\u5094"} // Value: 傔
Python:
char = '\u5094'
print(char) # Output: 傔
Perl:
my $char = "\x{5094}";
print $char; # Output: 傔
PHP:
$char = "\x{5094}";
echo $char; // Output: 傔
Ruby:
char = "\u{5094}"
puts char # Output: 傔
Rust:
let c = '\u{5094}';
println!("{}", c); // Output: 傔
Go:
char := '\u5094'
fmt.Printf("%c\n", char) // Output: 傔
CSS:
/* CSS content property */
.element::before {
content: "\005094"; /* 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%94
MD5:
54bd4071d78c2a1d43af4d1143375087
SHA1:
ff177f64cca606dc6aaccbb446d1b5179904b7a9
Base64:
5YKU