C:
char c = '\u6152';
printf("%c\n", c); // Output: 慒
JavaScript:
const char = '\u6152';
console.log(char); // Output: 慒
Java:
char c = '\u6152';
System.out.println(c); // Output: 慒
JSON:
{"text": "\u6152"} // Value: 慒
Python:
char = '\u6152'
print(char) # Output: 慒
Perl:
my $char = "\x{6152}";
print $char; # Output: 慒
PHP:
$char = "\x{6152}";
echo $char; // Output: 慒
Ruby:
char = "\u{6152}"
puts char # Output: 慒
Rust:
let c = '\u{6152}';
println!("{}", c); // Output: 慒
Go:
char := '\u6152'
fmt.Printf("%c\n", char) // Output: 慒
CSS:
/* CSS content property */
.element::before {
content: "\006152"; /* 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%92
MD5:
78a845d2e72e0136c5a5bb9d105b5083
SHA1:
94d315d1983c7038642bf649918ab17053599941
Base64:
5oWS