C:
char c = '\u7845';
printf("%c\n", c); // Output: 硅
JavaScript:
const char = '\u7845';
console.log(char); // Output: 硅
Java:
char c = '\u7845';
System.out.println(c); // Output: 硅
JSON:
{"text": "\u7845"} // Value: 硅
Python:
char = '\u7845'
print(char) # Output: 硅
Perl:
my $char = "\x{7845}";
print $char; # Output: 硅
PHP:
$char = "\x{7845}";
echo $char; // Output: 硅
Ruby:
char = "\u{7845}"
puts char # Output: 硅
Rust:
let c = '\u{7845}';
println!("{}", c); // Output: 硅
Go:
char := '\u7845'
fmt.Printf("%c\n", char) // Output: 硅
CSS:
/* CSS content property */
.element::before {
content: "\007845"; /* 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=%E7%A1%85
MD5:
ea57fddec3ec5e0db7f928e3ab12c164
SHA1:
69d59af4064d4f36f4170f687b7d82f308baaea1
Base64:
56GF