C:
char c = '\u5DDF';
printf("%c\n", c); // Output: 巟
JavaScript:
const char = '\u5DDF';
console.log(char); // Output: 巟
Java:
char c = '\u5DDF';
System.out.println(c); // Output: 巟
JSON:
{"text": "\u5DDF"} // Value: 巟
Python:
char = '\u5DDF'
print(char) # Output: 巟
Perl:
my $char = "\x{5DDF}";
print $char; # Output: 巟
PHP:
$char = "\x{5DDF}";
echo $char; // Output: 巟
Ruby:
char = "\u{5DDF}"
puts char # Output: 巟
Rust:
let c = '\u{5DDF}';
println!("{}", c); // Output: 巟
Go:
char := '\u5DDF'
fmt.Printf("%c\n", char) // Output: 巟
CSS:
/* CSS content property */
.element::before {
content: "\005DDF"; /* 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%9F
MD5:
73ca279406bea7e8f2c32977ee73f877
SHA1:
75eedfd2990edd5b576ba43c09d4294ea0624da8
Base64:
5bef