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