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