C:
char c = '\u7850';
printf("%c\n", c); // Output: 硐
JavaScript:
const char = '\u7850';
console.log(char); // Output: 硐
Java:
char c = '\u7850';
System.out.println(c); // Output: 硐
JSON:
{"text": "\u7850"} // Value: 硐
Python:
char = '\u7850'
print(char) # Output: 硐
Perl:
my $char = "\x{7850}";
print $char; # Output: 硐
PHP:
$char = "\x{7850}";
echo $char; // Output: 硐
Ruby:
char = "\u{7850}"
puts char # Output: 硐
Rust:
let c = '\u{7850}';
println!("{}", c); // Output: 硐
Go:
char := '\u7850'
fmt.Printf("%c\n", char) // Output: 硐
CSS:
/* CSS content property */
.element::before {
content: "\007850"; /* 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%90
MD5:
752850c375d90a64baf9ee8751ed7c46
SHA1:
8cff07715a8e0eeb85d453bd43c37156afbd6777
Base64:
56GQ