C:
char c = '\u5863';
printf("%c\n", c); // Output: 塣
JavaScript:
const char = '\u5863';
console.log(char); // Output: 塣
Java:
char c = '\u5863';
System.out.println(c); // Output: 塣
JSON:
{"text": "\u5863"} // Value: 塣
Python:
char = '\u5863'
print(char) # Output: 塣
Perl:
my $char = "\x{5863}";
print $char; # Output: 塣
PHP:
$char = "\x{5863}";
echo $char; // Output: 塣
Ruby:
char = "\u{5863}"
puts char # Output: 塣
Rust:
let c = '\u{5863}';
println!("{}", c); // Output: 塣
Go:
char := '\u5863'
fmt.Printf("%c\n", char) // Output: 塣
CSS:
/* CSS content property */
.element::before {
content: "\005863"; /* 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%A3
MD5:
8d20b561314f717bd41b6298afb0e1b5
SHA1:
ece5f4ccb396ccb62af908dcb81d7abf4158ff1c
Base64:
5aGj