C:
char c = '\u7851';
printf("%c\n", c); // Output: 硑
JavaScript:
const char = '\u7851';
console.log(char); // Output: 硑
Java:
char c = '\u7851';
System.out.println(c); // Output: 硑
JSON:
{"text": "\u7851"} // Value: 硑
Python:
char = '\u7851'
print(char) # Output: 硑
Perl:
my $char = "\x{7851}";
print $char; # Output: 硑
PHP:
$char = "\x{7851}";
echo $char; // Output: 硑
Ruby:
char = "\u{7851}"
puts char # Output: 硑
Rust:
let c = '\u{7851}';
println!("{}", c); // Output: 硑
Go:
char := '\u7851'
fmt.Printf("%c\n", char) // Output: 硑
CSS:
/* CSS content property */
.element::before {
content: "\007851"; /* 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%91
MD5:
d5b4220ed7303d1fcd1cac15bf7280a7
SHA1:
4ab5bfcc1d7ece42e9bf6faf0699eb85616a14d9
Base64:
56GR