C:
char c = '\u6148';
printf("%c\n", c); // Output: 慈
JavaScript:
const char = '\u6148';
console.log(char); // Output: 慈
Java:
char c = '\u6148';
System.out.println(c); // Output: 慈
JSON:
{"text": "\u6148"} // Value: 慈
Python:
char = '\u6148'
print(char) # Output: 慈
Perl:
my $char = "\x{6148}";
print $char; # Output: 慈
PHP:
$char = "\x{6148}";
echo $char; // Output: 慈
Ruby:
char = "\u{6148}"
puts char # Output: 慈
Rust:
let c = '\u{6148}';
println!("{}", c); // Output: 慈
Go:
char := '\u6148'
fmt.Printf("%c\n", char) // Output: 慈
CSS:
/* CSS content property */
.element::before {
content: "\006148"; /* 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%88
MD5:
4931c4cdc5d2551585e659d168dd10f7
SHA1:
676ceae77e919cef7a1468a182614de637a2f65d
Base64:
5oWI