C:
char c = '\u8005';
printf("%c\n", c); // Output: 者
JavaScript:
const char = '\u8005';
console.log(char); // Output: 者
Java:
char c = '\u8005';
System.out.println(c); // Output: 者
JSON:
{"text": "\u8005"} // Value: 者
Python:
char = '\u8005'
print(char) # Output: 者
Perl:
my $char = "\x{8005}";
print $char; # Output: 者
PHP:
$char = "\x{8005}";
echo $char; // Output: 者
Ruby:
char = "\u{8005}"
puts char # Output: 者
Rust:
let c = '\u{8005}';
println!("{}", c); // Output: 者
Go:
char := '\u8005'
fmt.Printf("%c\n", char) // Output: 者
CSS:
/* CSS content property */
.element::before {
content: "\008005"; /* 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%85
MD5:
b8639d5869682b7236de80cd77e161c7
SHA1:
a9539ed7e67953d57496b3554009084cb6341703
Base64:
6ICF