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