C:
char c = '\u6140';
printf("%c\n", c); // Output: 慀
JavaScript:
const char = '\u6140';
console.log(char); // Output: 慀
Java:
char c = '\u6140';
System.out.println(c); // Output: 慀
JSON:
{"text": "\u6140"} // Value: 慀
Python:
char = '\u6140'
print(char) # Output: 慀
Perl:
my $char = "\x{6140}";
print $char; # Output: 慀
PHP:
$char = "\x{6140}";
echo $char; // Output: 慀
Ruby:
char = "\u{6140}"
puts char # Output: 慀
Rust:
let c = '\u{6140}';
println!("{}", c); // Output: 慀
Go:
char := '\u6140'
fmt.Printf("%c\n", char) // Output: 慀
CSS:
/* CSS content property */
.element::before {
content: "\006140"; /* 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%80
MD5:
c321d3b7c5a743f38f32afc8e68106f1
SHA1:
c815047ae4030d8ce4fc9bcb131fe63ab0827350
Base64:
5oWA