C:
char c = '\u6084';
printf("%c\n", c); // Output: 悄
JavaScript:
const char = '\u6084';
console.log(char); // Output: 悄
Java:
char c = '\u6084';
System.out.println(c); // Output: 悄
JSON:
{"text": "\u6084"} // Value: 悄
Python:
char = '\u6084'
print(char) # Output: 悄
Perl:
my $char = "\x{6084}";
print $char; # Output: 悄
PHP:
$char = "\x{6084}";
echo $char; // Output: 悄
Ruby:
char = "\u{6084}"
puts char # Output: 悄
Rust:
let c = '\u{6084}';
println!("{}", c); // Output: 悄
Go:
char := '\u6084'
fmt.Printf("%c\n", char) // Output: 悄
CSS:
/* CSS content property */
.element::before {
content: "\006084"; /* 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%82%84
MD5:
1532a3f3985f07444a8db75a1fe4a1fd
SHA1:
db82bf78e15b8913abb09efb6f3898138d30a9ff
Base64:
5oKE