C:
char c = '\u661F';
printf("%c\n", c); // Output: 星
JavaScript:
const char = '\u661F';
console.log(char); // Output: 星
Java:
char c = '\u661F';
System.out.println(c); // Output: 星
JSON:
{"text": "\u661F"} // Value: 星
Python:
char = '\u661F'
print(char) # Output: 星
Perl:
my $char = "\x{661F}";
print $char; # Output: 星
PHP:
$char = "\x{661F}";
echo $char; // Output: 星
Ruby:
char = "\u{661F}"
puts char # Output: 星
Rust:
let c = '\u{661F}';
println!("{}", c); // Output: 星
Go:
char := '\u661F'
fmt.Printf("%c\n", char) // Output: 星
CSS:
/* CSS content property */
.element::before {
content: "\00661F"; /* 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%98%9F
MD5:
d1cde6adff1b4c048301d7e6c9591150
SHA1:
92ae747cc7a628d255c1e172926bc7d28b058df8
Base64:
5pif