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