C:
char c = '\u6165';
printf("%c\n", c); // Output: 慥
JavaScript:
const char = '\u6165';
console.log(char); // Output: 慥
Java:
char c = '\u6165';
System.out.println(c); // Output: 慥
JSON:
{"text": "\u6165"} // Value: 慥
Python:
char = '\u6165'
print(char) # Output: 慥
Perl:
my $char = "\x{6165}";
print $char; # Output: 慥
PHP:
$char = "\x{6165}";
echo $char; // Output: 慥
Ruby:
char = "\u{6165}"
puts char # Output: 慥
Rust:
let c = '\u{6165}';
println!("{}", c); // Output: 慥
Go:
char := '\u6165'
fmt.Printf("%c\n", char) // Output: 慥
CSS:
/* CSS content property */
.element::before {
content: "\006165"; /* 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%A5
MD5:
9f862f01c0de64437ee0a57852e3c580
SHA1:
da57afae1b657aa1da2eb08e9d4bc22d37326dba
Base64:
5oWl