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