C:
char c = '\u6143';
printf("%c\n", c); // Output: 慃
JavaScript:
const char = '\u6143';
console.log(char); // Output: 慃
Java:
char c = '\u6143';
System.out.println(c); // Output: 慃
JSON:
{"text": "\u6143"} // Value: 慃
Python:
char = '\u6143'
print(char) # Output: 慃
Perl:
my $char = "\x{6143}";
print $char; # Output: 慃
PHP:
$char = "\x{6143}";
echo $char; // Output: 慃
Ruby:
char = "\u{6143}"
puts char # Output: 慃
Rust:
let c = '\u{6143}';
println!("{}", c); // Output: 慃
Go:
char := '\u6143'
fmt.Printf("%c\n", char) // Output: 慃
CSS:
/* CSS content property */
.element::before {
content: "\006143"; /* 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%85%83
MD5:
d43609253d0e4272d4832b858988d43b
SHA1:
07fec8a596ae2bcb4fa4f8b208e452642352f287
Base64:
5oWD