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