Unicode Finder

"星" U+661F(CJK UNIFIED IDEOGRAPH-661F)

U+661F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-661F

Programming

C
\u661F
JavaScript
\u661F
Java
\u661F
Json
\u661F
Python
\u661F
Perl
\x{661F}
PHP
\x{661F}
Ruby
\u{661F}
Rust
\u{661F}
Go
\u661F

Web

CSS
\00661F
HtmlDecimal
星
HtmlHexadecimal
星
Url
%E6%98%9F

Code

MD5
d1cde6adff1b4c048301d7e6c9591150
Sha1
92ae747cc7a628d255c1e172926bc7d28b058df8
Base64
5pif

使用示例

Programming Languages

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: 星

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00661F";  /* Display: 星 */
}

HTML Decimal:

<p>HTML decimal: &#26143;</p>  <!-- Display: 星 -->

HTML Hexadecimal:

<p>HTML hex: &#x661F;</p>  <!-- Display: 星 -->

URL Encoding:

// 星 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%9F

Encodings

MD5:

d1cde6adff1b4c048301d7e6c9591150

SHA1:

92ae747cc7a628d255c1e172926bc7d28b058df8

Base64:

5pif