C:
char c = '\u6101';
printf("%c\n", c); // Output: 愁
JavaScript:
const char = '\u6101';
console.log(char); // Output: 愁
Java:
char c = '\u6101';
System.out.println(c); // Output: 愁
JSON:
{"text": "\u6101"} // Value: 愁
Python:
char = '\u6101'
print(char) # Output: 愁
Perl:
my $char = "\x{6101}";
print $char; # Output: 愁
PHP:
$char = "\x{6101}";
echo $char; // Output: 愁
Ruby:
char = "\u{6101}"
puts char # Output: 愁
Rust:
let c = '\u{6101}';
println!("{}", c); // Output: 愁
Go:
char := '\u6101'
fmt.Printf("%c\n", char) // Output: 愁
CSS:
/* CSS content property */
.element::before {
content: "\006101"; /* 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=%E6%84%81
MD5:
edb92f1f1732a0e0589e50f646d69947
SHA1:
59ae2bbdc92016aca70d85ae5dca9f632bc5d185
Base64:
5oSB