C:
char c = '\u6257';
printf("%c\n", c); // Output: 扗
JavaScript:
const char = '\u6257';
console.log(char); // Output: 扗
Java:
char c = '\u6257';
System.out.println(c); // Output: 扗
JSON:
{"text": "\u6257"} // Value: 扗
Python:
char = '\u6257'
print(char) # Output: 扗
Perl:
my $char = "\x{6257}";
print $char; # Output: 扗
PHP:
$char = "\x{6257}";
echo $char; // Output: 扗
Ruby:
char = "\u{6257}"
puts char # Output: 扗
Rust:
let c = '\u{6257}';
println!("{}", c); // Output: 扗
Go:
char := '\u6257'
fmt.Printf("%c\n", char) // Output: 扗
CSS:
/* CSS content property */
.element::before {
content: "\006257"; /* 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%97
MD5:
d8f0e4465ff31343e789ca02acd4b638
SHA1:
4c8f24cf4a2fd123fd7bf3f8e54b0e3d6fd65ed1
Base64:
5omX