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