C:
char c = '\u82AF';
printf("%c\n", c); // Output: 芯
JavaScript:
const char = '\u82AF';
console.log(char); // Output: 芯
Java:
char c = '\u82AF';
System.out.println(c); // Output: 芯
JSON:
{"text": "\u82AF"} // Value: 芯
Python:
char = '\u82AF'
print(char) # Output: 芯
Perl:
my $char = "\x{82AF}";
print $char; # Output: 芯
PHP:
$char = "\x{82AF}";
echo $char; // Output: 芯
Ruby:
char = "\u{82AF}"
puts char # Output: 芯
Rust:
let c = '\u{82AF}';
println!("{}", c); // Output: 芯
Go:
char := '\u82AF'
fmt.Printf("%c\n", char) // Output: 芯
CSS:
/* CSS content property */
.element::before {
content: "\0082AF"; /* 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%8A%AF
MD5:
942cded3104f8eb9fdab543933c94cd7
SHA1:
f93cdfc513740c6fe2c5a3da4ac6cb660b148274
Base64:
6Iqv