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