C:
char c = '\u6491';
printf("%c\n", c); // Output: 撑
JavaScript:
const char = '\u6491';
console.log(char); // Output: 撑
Java:
char c = '\u6491';
System.out.println(c); // Output: 撑
JSON:
{"text": "\u6491"} // Value: 撑
Python:
char = '\u6491'
print(char) # Output: 撑
Perl:
my $char = "\x{6491}";
print $char; # Output: 撑
PHP:
$char = "\x{6491}";
echo $char; // Output: 撑
Ruby:
char = "\u{6491}"
puts char # Output: 撑
Rust:
let c = '\u{6491}';
println!("{}", c); // Output: 撑
Go:
char := '\u6491'
fmt.Printf("%c\n", char) // Output: 撑
CSS:
/* CSS content property */
.element::before {
content: "\006491"; /* 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%92%91
MD5:
45ac58d1b9e4f723804a472cd7347c5a
SHA1:
35ac47697a071c462d7fd94e49f80eebfd366d5d
Base64:
5pKR