C:
char c = '\u9F54';
printf("%c\n", c); // Output: 齔
JavaScript:
const char = '\u9F54';
console.log(char); // Output: 齔
Java:
char c = '\u9F54';
System.out.println(c); // Output: 齔
JSON:
{"text": "\u9F54"} // Value: 齔
Python:
char = '\u9F54'
print(char) # Output: 齔
Perl:
my $char = "\x{9F54}";
print $char; # Output: 齔
PHP:
$char = "\x{9F54}";
echo $char; // Output: 齔
Ruby:
char = "\u{9F54}"
puts char # Output: 齔
Rust:
let c = '\u{9F54}';
println!("{}", c); // Output: 齔
Go:
char := '\u9F54'
fmt.Printf("%c\n", char) // Output: 齔
CSS:
/* CSS content property */
.element::before {
content: "\009F54"; /* 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%BD%94
MD5:
8cfe36ee1a702f78ec506bb92c8a0684
SHA1:
741291ccc8e919391aa1a9e16c9d3a1881ebb8f3
Base64:
6b2U