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