C:
char c = '\u6254';
printf("%c\n", c); // Output: 扔
JavaScript:
const char = '\u6254';
console.log(char); // Output: 扔
Java:
char c = '\u6254';
System.out.println(c); // Output: 扔
JSON:
{"text": "\u6254"} // Value: 扔
Python:
char = '\u6254'
print(char) # Output: 扔
Perl:
my $char = "\x{6254}";
print $char; # Output: 扔
PHP:
$char = "\x{6254}";
echo $char; // Output: 扔
Ruby:
char = "\u{6254}"
puts char # Output: 扔
Rust:
let c = '\u{6254}';
println!("{}", c); // Output: 扔
Go:
char := '\u6254'
fmt.Printf("%c\n", char) // Output: 扔
CSS:
/* CSS content property */
.element::before {
content: "\006254"; /* 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%94
MD5:
83a1ebd972090091714a2b3c1f9dde65
SHA1:
8c03a17f530f66c1a9bc94e5c24ae26fd254b999
Base64:
5omU