C:
char c = '\u6168';
printf("%c\n", c); // Output: 慨
JavaScript:
const char = '\u6168';
console.log(char); // Output: 慨
Java:
char c = '\u6168';
System.out.println(c); // Output: 慨
JSON:
{"text": "\u6168"} // Value: 慨
Python:
char = '\u6168'
print(char) # Output: 慨
Perl:
my $char = "\x{6168}";
print $char; # Output: 慨
PHP:
$char = "\x{6168}";
echo $char; // Output: 慨
Ruby:
char = "\u{6168}"
puts char # Output: 慨
Rust:
let c = '\u{6168}';
println!("{}", c); // Output: 慨
Go:
char := '\u6168'
fmt.Printf("%c\n", char) // Output: 慨
CSS:
/* CSS content property */
.element::before {
content: "\006168"; /* 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%A8
MD5:
ef88d5c7c0d034a05f8d404278c4670c
SHA1:
8c0522b5512615a22a663c531f17603e96571d50
Base64:
5oWo