C:
char c = '\u8106';
printf("%c\n", c); // Output: 脆
JavaScript:
const char = '\u8106';
console.log(char); // Output: 脆
Java:
char c = '\u8106';
System.out.println(c); // Output: 脆
JSON:
{"text": "\u8106"} // Value: 脆
Python:
char = '\u8106'
print(char) # Output: 脆
Perl:
my $char = "\x{8106}";
print $char; # Output: 脆
PHP:
$char = "\x{8106}";
echo $char; // Output: 脆
Ruby:
char = "\u{8106}"
puts char # Output: 脆
Rust:
let c = '\u{8106}';
println!("{}", c); // Output: 脆
Go:
char := '\u8106'
fmt.Printf("%c\n", char) // Output: 脆
CSS:
/* CSS content property */
.element::before {
content: "\008106"; /* 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%86
MD5:
ecb45505a2bd65e0ddac024710244006
SHA1:
41b2f3a7ba9f7f41163613a0ffc9dc1e18c3f303
Base64:
6ISG