C:
char c = '\u8CC3';
printf("%c\n", c); // Output: 賃
JavaScript:
const char = '\u8CC3';
console.log(char); // Output: 賃
Java:
char c = '\u8CC3';
System.out.println(c); // Output: 賃
JSON:
{"text": "\u8CC3"} // Value: 賃
Python:
char = '\u8CC3'
print(char) # Output: 賃
Perl:
my $char = "\x{8CC3}";
print $char; # Output: 賃
PHP:
$char = "\x{8CC3}";
echo $char; // Output: 賃
Ruby:
char = "\u{8CC3}"
puts char # Output: 賃
Rust:
let c = '\u{8CC3}';
println!("{}", c); // Output: 賃
Go:
char := '\u8CC3'
fmt.Printf("%c\n", char) // Output: 賃
CSS:
/* CSS content property */
.element::before {
content: "\008CC3"; /* 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=%E8%B3%83
MD5:
3bf9ab57ae21e7c65070266827cac93a
SHA1:
c59ed670cea844abe3194cfedcd389f1eb01f17c
Base64:
6LOD