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