C:
char c = '\u6149';
printf("%c\n", c); // Output: 慉
JavaScript:
const char = '\u6149';
console.log(char); // Output: 慉
Java:
char c = '\u6149';
System.out.println(c); // Output: 慉
JSON:
{"text": "\u6149"} // Value: 慉
Python:
char = '\u6149'
print(char) # Output: 慉
Perl:
my $char = "\x{6149}";
print $char; # Output: 慉
PHP:
$char = "\x{6149}";
echo $char; // Output: 慉
Ruby:
char = "\u{6149}"
puts char # Output: 慉
Rust:
let c = '\u{6149}';
println!("{}", c); // Output: 慉
Go:
char := '\u6149'
fmt.Printf("%c\n", char) // Output: 慉
CSS:
/* CSS content property */
.element::before {
content: "\006149"; /* 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%89
MD5:
283de21397716c6fca35fc3a06d34503
SHA1:
319c4d4b2dd776465765fec1fb0a585c9e50b976
Base64:
5oWJ