C:
char c = '\u579B';
printf("%c\n", c); // Output: 垛
JavaScript:
const char = '\u579B';
console.log(char); // Output: 垛
Java:
char c = '\u579B';
System.out.println(c); // Output: 垛
JSON:
{"text": "\u579B"} // Value: 垛
Python:
char = '\u579B'
print(char) # Output: 垛
Perl:
my $char = "\x{579B}";
print $char; # Output: 垛
PHP:
$char = "\x{579B}";
echo $char; // Output: 垛
Ruby:
char = "\u{579B}"
puts char # Output: 垛
Rust:
let c = '\u{579B}';
println!("{}", c); // Output: 垛
Go:
char := '\u579B'
fmt.Printf("%c\n", char) // Output: 垛
CSS:
/* CSS content property */
.element::before {
content: "\00579B"; /* 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%9E%9B
MD5:
9200e427bef3c9d79a14267e662266ef
SHA1:
ef5af2b1a835e06bca4544326690aa1c9cbfbb86
Base64:
5Z6b