C:
char c = '\u5124';
printf("%c\n", c); // Output: 儤
JavaScript:
const char = '\u5124';
console.log(char); // Output: 儤
Java:
char c = '\u5124';
System.out.println(c); // Output: 儤
JSON:
{"text": "\u5124"} // Value: 儤
Python:
char = '\u5124'
print(char) # Output: 儤
Perl:
my $char = "\x{5124}";
print $char; # Output: 儤
PHP:
$char = "\x{5124}";
echo $char; // Output: 儤
Ruby:
char = "\u{5124}"
puts char # Output: 儤
Rust:
let c = '\u{5124}';
println!("{}", c); // Output: 儤
Go:
char := '\u5124'
fmt.Printf("%c\n", char) // Output: 儤
CSS:
/* CSS content property */
.element::before {
content: "\005124"; /* 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%84%A4
MD5:
1610d6e8d7f97dcd92e91e028ac17e2c
SHA1:
7f0bc8073e262eb9e9c2ad0488dc642fb8249f10
Base64:
5YSk