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