C:
char c = '\u9655';
printf("%c\n", c); // Output: 陕
JavaScript:
const char = '\u9655';
console.log(char); // Output: 陕
Java:
char c = '\u9655';
System.out.println(c); // Output: 陕
JSON:
{"text": "\u9655"} // Value: 陕
Python:
char = '\u9655'
print(char) # Output: 陕
Perl:
my $char = "\x{9655}";
print $char; # Output: 陕
PHP:
$char = "\x{9655}";
echo $char; // Output: 陕
Ruby:
char = "\u{9655}"
puts char # Output: 陕
Rust:
let c = '\u{9655}';
println!("{}", c); // Output: 陕
Go:
char := '\u9655'
fmt.Printf("%c\n", char) // Output: 陕
CSS:
/* CSS content property */
.element::before {
content: "\009655"; /* 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%95
MD5:
9bffd08cde00b46cac73eb9fa1770a99
SHA1:
31f360639475304883fee9a335a964e91c24058e
Base64:
6ZmV