C:
char c = '\u6D53';
printf("%c\n", c); // Output: 浓
JavaScript:
const char = '\u6D53';
console.log(char); // Output: 浓
Java:
char c = '\u6D53';
System.out.println(c); // Output: 浓
JSON:
{"text": "\u6D53"} // Value: 浓
Python:
char = '\u6D53'
print(char) # Output: 浓
Perl:
my $char = "\x{6D53}";
print $char; # Output: 浓
PHP:
$char = "\x{6D53}";
echo $char; // Output: 浓
Ruby:
char = "\u{6D53}"
puts char # Output: 浓
Rust:
let c = '\u{6D53}';
println!("{}", c); // Output: 浓
Go:
char := '\u6D53'
fmt.Printf("%c\n", char) // Output: 浓
CSS:
/* CSS content property */
.element::before {
content: "\006D53"; /* 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%B5%93
MD5:
2d21377fdd06ba98a28b4618644eb02b
SHA1:
00e1e7578d90a7ec43ef0bf27f18cb2cf0273bff
Base64:
5rWT