C:
char c = '\u9647';
printf("%c\n", c); // Output: 陇
JavaScript:
const char = '\u9647';
console.log(char); // Output: 陇
Java:
char c = '\u9647';
System.out.println(c); // Output: 陇
JSON:
{"text": "\u9647"} // Value: 陇
Python:
char = '\u9647'
print(char) # Output: 陇
Perl:
my $char = "\x{9647}";
print $char; # Output: 陇
PHP:
$char = "\x{9647}";
echo $char; // Output: 陇
Ruby:
char = "\u{9647}"
puts char # Output: 陇
Rust:
let c = '\u{9647}';
println!("{}", c); // Output: 陇
Go:
char := '\u9647'
fmt.Printf("%c\n", char) // Output: 陇
CSS:
/* CSS content property */
.element::before {
content: "\009647"; /* 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=%E9%99%87
MD5:
19f9b5b42ee025b3061cdec071063344
SHA1:
f1f7a24c69d2c1fe680a5e339c5d1b4eb5714dd0
Base64:
6ZmH