C:
char c = '\u6167';
printf("%c\n", c); // Output: 慧
JavaScript:
const char = '\u6167';
console.log(char); // Output: 慧
Java:
char c = '\u6167';
System.out.println(c); // Output: 慧
JSON:
{"text": "\u6167"} // Value: 慧
Python:
char = '\u6167'
print(char) # Output: 慧
Perl:
my $char = "\x{6167}";
print $char; # Output: 慧
PHP:
$char = "\x{6167}";
echo $char; // Output: 慧
Ruby:
char = "\u{6167}"
puts char # Output: 慧
Rust:
let c = '\u{6167}';
println!("{}", c); // Output: 慧
Go:
char := '\u6167'
fmt.Printf("%c\n", char) // Output: 慧
CSS:
/* CSS content property */
.element::before {
content: "\006167"; /* 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%A7
MD5:
4cf0467954fd4d52586a1bbaee74f4a2
SHA1:
b7611899b56dde675f3e7b8453e563ac0d2d463f
Base64:
5oWn