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