C:
char c = '\u8021';
printf("%c\n", c); // Output: 耡
JavaScript:
const char = '\u8021';
console.log(char); // Output: 耡
Java:
char c = '\u8021';
System.out.println(c); // Output: 耡
JSON:
{"text": "\u8021"} // Value: 耡
Python:
char = '\u8021'
print(char) # Output: 耡
Perl:
my $char = "\x{8021}";
print $char; # Output: 耡
PHP:
$char = "\x{8021}";
echo $char; // Output: 耡
Ruby:
char = "\u{8021}"
puts char # Output: 耡
Rust:
let c = '\u{8021}';
println!("{}", c); // Output: 耡
Go:
char := '\u8021'
fmt.Printf("%c\n", char) // Output: 耡
CSS:
/* CSS content property */
.element::before {
content: "\008021"; /* 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%80%A1
MD5:
8ee1bc763d09d37857704846351cee8e
SHA1:
cbc216e73d3f0442a313ae8e303fdab408d79835
Base64:
6ICh