C:
char c = '\u810F';
printf("%c\n", c); // Output: 脏
JavaScript:
const char = '\u810F';
console.log(char); // Output: 脏
Java:
char c = '\u810F';
System.out.println(c); // Output: 脏
JSON:
{"text": "\u810F"} // Value: 脏
Python:
char = '\u810F'
print(char) # Output: 脏
Perl:
my $char = "\x{810F}";
print $char; # Output: 脏
PHP:
$char = "\x{810F}";
echo $char; // Output: 脏
Ruby:
char = "\u{810F}"
puts char # Output: 脏
Rust:
let c = '\u{810F}';
println!("{}", c); // Output: 脏
Go:
char := '\u810F'
fmt.Printf("%c\n", char) // Output: 脏
CSS:
/* CSS content property */
.element::before {
content: "\00810F"; /* 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%84%8F
MD5:
6b7dde3fcf4d0791a7303426d6170b9a
SHA1:
d94bb488cdd7f8898f6aeeb193074848ec0f057c
Base64:
6ISP