C:
char c = '\u5DF9';
printf("%c\n", c); // Output: 巹
JavaScript:
const char = '\u5DF9';
console.log(char); // Output: 巹
Java:
char c = '\u5DF9';
System.out.println(c); // Output: 巹
JSON:
{"text": "\u5DF9"} // Value: 巹
Python:
char = '\u5DF9'
print(char) # Output: 巹
Perl:
my $char = "\x{5DF9}";
print $char; # Output: 巹
PHP:
$char = "\x{5DF9}";
echo $char; // Output: 巹
Ruby:
char = "\u{5DF9}"
puts char # Output: 巹
Rust:
let c = '\u{5DF9}';
println!("{}", c); // Output: 巹
Go:
char := '\u5DF9'
fmt.Printf("%c\n", char) // Output: 巹
CSS:
/* CSS content property */
.element::before {
content: "\005DF9"; /* 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=%E5%B7%B9
MD5:
d932f6886cae0046de47f7b9ab53d2c1
SHA1:
d6fa72cf6ec488f14cbe5d9d23e9cf68d76e13d2
Base64:
5be5