C:
char c = '\u7852';
printf("%c\n", c); // Output: 硒
JavaScript:
const char = '\u7852';
console.log(char); // Output: 硒
Java:
char c = '\u7852';
System.out.println(c); // Output: 硒
JSON:
{"text": "\u7852"} // Value: 硒
Python:
char = '\u7852'
print(char) # Output: 硒
Perl:
my $char = "\x{7852}";
print $char; # Output: 硒
PHP:
$char = "\x{7852}";
echo $char; // Output: 硒
Ruby:
char = "\u{7852}"
puts char # Output: 硒
Rust:
let c = '\u{7852}';
println!("{}", c); // Output: 硒
Go:
char := '\u7852'
fmt.Printf("%c\n", char) // Output: 硒
CSS:
/* CSS content property */
.element::before {
content: "\007852"; /* 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%92
MD5:
564fcd8fbd3716e62aa7261bd4e52c40
SHA1:
58b694589fa884c6776e0a393845980eb3115bfb
Base64:
56GS