C:
char c = '\u8102';
printf("%c\n", c); // Output: 脂
JavaScript:
const char = '\u8102';
console.log(char); // Output: 脂
Java:
char c = '\u8102';
System.out.println(c); // Output: 脂
JSON:
{"text": "\u8102"} // Value: 脂
Python:
char = '\u8102'
print(char) # Output: 脂
Perl:
my $char = "\x{8102}";
print $char; # Output: 脂
PHP:
$char = "\x{8102}";
echo $char; // Output: 脂
Ruby:
char = "\u{8102}"
puts char # Output: 脂
Rust:
let c = '\u{8102}';
println!("{}", c); // Output: 脂
Go:
char := '\u8102'
fmt.Printf("%c\n", char) // Output: 脂
CSS:
/* CSS content property */
.element::before {
content: "\008102"; /* 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%82
MD5:
cbf246379acf584b9b77337ab224cd93
SHA1:
506462c25283ebab1494a171b466d01e8aec9d04
Base64:
6ISC