Unicode Finder

"眉" U+7709(CJK UNIFIED IDEOGRAPH-7709)

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

Programming

C
\u7709
JavaScript
\u7709
Java
\u7709
Json
\u7709
Python
\u7709
Perl
\x{7709}
PHP
\x{7709}
Ruby
\u{7709}
Rust
\u{7709}
Go
\u7709

Web

CSS
\007709
HtmlDecimal
眉
HtmlHexadecimal
眉
Url
%E7%9C%89

Code

MD5
224e0df43a693a40ca81f7375d9a1ac1
Sha1
89254e5b9f84d28a130ce33e11e3a089333e05e1
Base64
55yJ

使用示例

Programming Languages

C:

char c = '\u7709';
printf("%c\n", c);  // Output: 眉

JavaScript:

const char = '\u7709';
console.log(char);  // Output: 眉

Java:

char c = '\u7709';
System.out.println(c);  // Output: 眉

JSON:

{"text": "\u7709"}  // Value: 眉

Python:

char = '\u7709'
print(char)  # Output: 眉

Perl:

my $char = "\x{7709}";
print $char;  # Output: 眉

PHP:

$char = "\x{7709}";
echo $char;  // Output: 眉

Ruby:

char = "\u{7709}"
puts char  # Output: 眉

Rust:

let c = '\u{7709}';
println!("{}", c);  // Output: 眉

Go:

char := '\u7709'
fmt.Printf("%c\n", char)  // Output: 眉

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007709";  /* Display: 眉 */
}

HTML Decimal:

<p>HTML decimal: &#30473;</p>  <!-- Display: 眉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7709;</p>  <!-- Display: 眉 -->

URL Encoding:

// 眉 URL encoding
https://unicodefinder.com/search.php?query=%E7%9C%89

Encodings

MD5:

224e0df43a693a40ca81f7375d9a1ac1

SHA1:

89254e5b9f84d28a130ce33e11e3a089333e05e1

Base64:

55yJ