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