C:
char c = '\u5145';
printf("%c\n", c); // Output: 充
JavaScript:
const char = '\u5145';
console.log(char); // Output: 充
Java:
char c = '\u5145';
System.out.println(c); // Output: 充
JSON:
{"text": "\u5145"} // Value: 充
Python:
char = '\u5145'
print(char) # Output: 充
Perl:
my $char = "\x{5145}";
print $char; # Output: 充
PHP:
$char = "\x{5145}";
echo $char; // Output: 充
Ruby:
char = "\u{5145}"
puts char # Output: 充
Rust:
let c = '\u{5145}';
println!("{}", c); // Output: 充
Go:
char := '\u5145'
fmt.Printf("%c\n", char) // Output: 充
CSS:
/* CSS content property */
.element::before {
content: "\005145"; /* 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=%E5%85%85
MD5:
8326fd14b9cf424838580706ded515d8
SHA1:
890d9c705cca36e934a6548012755728e2f6e905
Base64:
5YWF