C:
char c = '\u6594';
printf("%c\n", c); // Output: 斔
JavaScript:
const char = '\u6594';
console.log(char); // Output: 斔
Java:
char c = '\u6594';
System.out.println(c); // Output: 斔
JSON:
{"text": "\u6594"} // Value: 斔
Python:
char = '\u6594'
print(char) # Output: 斔
Perl:
my $char = "\x{6594}";
print $char; # Output: 斔
PHP:
$char = "\x{6594}";
echo $char; // Output: 斔
Ruby:
char = "\u{6594}"
puts char # Output: 斔
Rust:
let c = '\u{6594}';
println!("{}", c); // Output: 斔
Go:
char := '\u6594'
fmt.Printf("%c\n", char) // Output: 斔
CSS:
/* CSS content property */
.element::before {
content: "\006594"; /* 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=%E6%96%94
MD5:
d25d70bd80721a6fbf7517b3451d34bf
SHA1:
662bcabf9ce6aa8373b97acc840f05b487d45c15
Base64:
5paU