C:
char c = '\u6055';
printf("%c\n", c); // Output: 恕
JavaScript:
const char = '\u6055';
console.log(char); // Output: 恕
Java:
char c = '\u6055';
System.out.println(c); // Output: 恕
JSON:
{"text": "\u6055"} // Value: 恕
Python:
char = '\u6055'
print(char) # Output: 恕
Perl:
my $char = "\x{6055}";
print $char; # Output: 恕
PHP:
$char = "\x{6055}";
echo $char; // Output: 恕
Ruby:
char = "\u{6055}"
puts char # Output: 恕
Rust:
let c = '\u{6055}';
println!("{}", c); // Output: 恕
Go:
char := '\u6055'
fmt.Printf("%c\n", char) // Output: 恕
CSS:
/* CSS content property */
.element::before {
content: "\006055"; /* 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%81%95
MD5:
bf6f39ed061f6d4d1e469c8728bac486
SHA1:
1151681f4ad6327245d63566c9b05d43a43e5231
Base64:
5oGV