C:
char c = '\u79DF';
printf("%c\n", c); // Output: 租
JavaScript:
const char = '\u79DF';
console.log(char); // Output: 租
Java:
char c = '\u79DF';
System.out.println(c); // Output: 租
JSON:
{"text": "\u79DF"} // Value: 租
Python:
char = '\u79DF'
print(char) # Output: 租
Perl:
my $char = "\x{79DF}";
print $char; # Output: 租
PHP:
$char = "\x{79DF}";
echo $char; // Output: 租
Ruby:
char = "\u{79DF}"
puts char # Output: 租
Rust:
let c = '\u{79DF}';
println!("{}", c); // Output: 租
Go:
char := '\u79DF'
fmt.Printf("%c\n", char) // Output: 租
CSS:
/* CSS content property */
.element::before {
content: "\0079DF"; /* 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=%E7%A7%9F
MD5:
89855aaf88435d9f3b2984977663ee92
SHA1:
5d00753a306a317ed797e8ceffc3f825d7036986
Base64:
56ef