C:
char c = '\u6284';
printf("%c\n", c); // Output: 抄
JavaScript:
const char = '\u6284';
console.log(char); // Output: 抄
Java:
char c = '\u6284';
System.out.println(c); // Output: 抄
JSON:
{"text": "\u6284"} // Value: 抄
Python:
char = '\u6284'
print(char) # Output: 抄
Perl:
my $char = "\x{6284}";
print $char; # Output: 抄
PHP:
$char = "\x{6284}";
echo $char; // Output: 抄
Ruby:
char = "\u{6284}"
puts char # Output: 抄
Rust:
let c = '\u{6284}';
println!("{}", c); // Output: 抄
Go:
char := '\u6284'
fmt.Printf("%c\n", char) // Output: 抄
CSS:
/* CSS content property */
.element::before {
content: "\006284"; /* 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%8A%84
MD5:
e43217f2a7b9f86ecc099676db1e0fd7
SHA1:
0c7c59dc5e8c43c3ff2a6b02d6a9cdcf37e8610f
Base64:
5oqE