C:
char c = '\u585D';
printf("%c\n", c); // Output: 塝
JavaScript:
const char = '\u585D';
console.log(char); // Output: 塝
Java:
char c = '\u585D';
System.out.println(c); // Output: 塝
JSON:
{"text": "\u585D"} // Value: 塝
Python:
char = '\u585D'
print(char) # Output: 塝
Perl:
my $char = "\x{585D}";
print $char; # Output: 塝
PHP:
$char = "\x{585D}";
echo $char; // Output: 塝
Ruby:
char = "\u{585D}"
puts char # Output: 塝
Rust:
let c = '\u{585D}';
println!("{}", c); // Output: 塝
Go:
char := '\u585D'
fmt.Printf("%c\n", char) // Output: 塝
CSS:
/* CSS content property */
.element::before {
content: "\00585D"; /* 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%A1%9D
MD5:
6276679d3a24d28ae63a24e3e88d2ab7
SHA1:
d26d2e0ddc6076df5d1e38de3114382663ddcff4
Base64:
5aGd