C:
char c = '\u9FA0';
printf("%c\n", c); // Output: 龠
JavaScript:
const char = '\u9FA0';
console.log(char); // Output: 龠
Java:
char c = '\u9FA0';
System.out.println(c); // Output: 龠
JSON:
{"text": "\u9FA0"} // Value: 龠
Python:
char = '\u9FA0'
print(char) # Output: 龠
Perl:
my $char = "\x{9FA0}";
print $char; # Output: 龠
PHP:
$char = "\x{9FA0}";
echo $char; // Output: 龠
Ruby:
char = "\u{9FA0}"
puts char # Output: 龠
Rust:
let c = '\u{9FA0}';
println!("{}", c); // Output: 龠
Go:
char := '\u9FA0'
fmt.Printf("%c\n", char) // Output: 龠
CSS:
/* CSS content property */
.element::before {
content: "\009FA0"; /* 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%BE%A0
MD5:
3bfe7ca9a3e8878caa2b5606ec431f98
SHA1:
3f7f3ba897e8260d2e631c1ddaa512b1025f1e6a
Base64:
6b6g