C:
char c = '\u8152';
printf("%c\n", c); // Output: 腒
JavaScript:
const char = '\u8152';
console.log(char); // Output: 腒
Java:
char c = '\u8152';
System.out.println(c); // Output: 腒
JSON:
{"text": "\u8152"} // Value: 腒
Python:
char = '\u8152'
print(char) # Output: 腒
Perl:
my $char = "\x{8152}";
print $char; # Output: 腒
PHP:
$char = "\x{8152}";
echo $char; // Output: 腒
Ruby:
char = "\u{8152}"
puts char # Output: 腒
Rust:
let c = '\u{8152}';
println!("{}", c); // Output: 腒
Go:
char := '\u8152'
fmt.Printf("%c\n", char) // Output: 腒
CSS:
/* CSS content property */
.element::before {
content: "\008152"; /* 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%92
MD5:
1739545d0bcb1acf9b70946331429998
SHA1:
cbd1a5cf016fb9593bc037f90be79b514d431202
Base64:
6IWS