C:
char c = '\u5860';
printf("%c\n", c); // Output: 塠
JavaScript:
const char = '\u5860';
console.log(char); // Output: 塠
Java:
char c = '\u5860';
System.out.println(c); // Output: 塠
JSON:
{"text": "\u5860"} // Value: 塠
Python:
char = '\u5860'
print(char) # Output: 塠
Perl:
my $char = "\x{5860}";
print $char; # Output: 塠
PHP:
$char = "\x{5860}";
echo $char; // Output: 塠
Ruby:
char = "\u{5860}"
puts char # Output: 塠
Rust:
let c = '\u{5860}';
println!("{}", c); // Output: 塠
Go:
char := '\u5860'
fmt.Printf("%c\n", char) // Output: 塠
CSS:
/* CSS content property */
.element::before {
content: "\005860"; /* 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%A0
MD5:
df4c125826393a76f3602f7ef33911a9
SHA1:
865e970090dc564188e1fa66413581307c4c2ffb
Base64:
5aGg