C:
char c = '\u5229';
printf("%c\n", c); // Output: 利
JavaScript:
const char = '\u5229';
console.log(char); // Output: 利
Java:
char c = '\u5229';
System.out.println(c); // Output: 利
JSON:
{"text": "\u5229"} // Value: 利
Python:
char = '\u5229'
print(char) # Output: 利
Perl:
my $char = "\x{5229}";
print $char; # Output: 利
PHP:
$char = "\x{5229}";
echo $char; // Output: 利
Ruby:
char = "\u{5229}"
puts char # Output: 利
Rust:
let c = '\u{5229}';
println!("{}", c); // Output: 利
Go:
char := '\u5229'
fmt.Printf("%c\n", char) // Output: 利
CSS:
/* CSS content property */
.element::before {
content: "\005229"; /* 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%88%A9
MD5:
89d9a9ba3a4d44326cc93a767be804ed
SHA1:
1a1001e5f30a1b47ba43a44a4a73298d6208fa65
Base64:
5Yip