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