C:
char c = '\u586D';
printf("%c\n", c); // Output: 塭
JavaScript:
const char = '\u586D';
console.log(char); // Output: 塭
Java:
char c = '\u586D';
System.out.println(c); // Output: 塭
JSON:
{"text": "\u586D"} // Value: 塭
Python:
char = '\u586D'
print(char) # Output: 塭
Perl:
my $char = "\x{586D}";
print $char; # Output: 塭
PHP:
$char = "\x{586D}";
echo $char; // Output: 塭
Ruby:
char = "\u{586D}"
puts char # Output: 塭
Rust:
let c = '\u{586D}';
println!("{}", c); // Output: 塭
Go:
char := '\u586D'
fmt.Printf("%c\n", char) // Output: 塭
CSS:
/* CSS content property */
.element::before {
content: "\00586D"; /* 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%AD
MD5:
5a2fcb436b76792dd07cfafdf89f1ee9
SHA1:
31756d81a64c118ae105037c2e0fd7f1545e5e6b
Base64:
5aGt