C:
char c = '\u9805';
printf("%c\n", c); // Output: 項
JavaScript:
const char = '\u9805';
console.log(char); // Output: 項
Java:
char c = '\u9805';
System.out.println(c); // Output: 項
JSON:
{"text": "\u9805"} // Value: 項
Python:
char = '\u9805'
print(char) # Output: 項
Perl:
my $char = "\x{9805}";
print $char; # Output: 項
PHP:
$char = "\x{9805}";
echo $char; // Output: 項
Ruby:
char = "\u{9805}"
puts char # Output: 項
Rust:
let c = '\u{9805}';
println!("{}", c); // Output: 項
Go:
char := '\u9805'
fmt.Printf("%c\n", char) // Output: 項
CSS:
/* CSS content property */
.element::before {
content: "\009805"; /* 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=%E9%A0%85
MD5:
14d41410e2a27b4231530dc15ea8c07f
SHA1:
9cc6467c8ca1895cd7429b156a0e073404ddf234
Base64:
6aCF