Unicode Finder

"眅" U+7705(CJK UNIFIED IDEOGRAPH-7705)

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

Programming

C
\u7705
JavaScript
\u7705
Java
\u7705
Json
\u7705
Python
\u7705
Perl
\x{7705}
PHP
\x{7705}
Ruby
\u{7705}
Rust
\u{7705}
Go
\u7705

Web

CSS
\007705
HtmlDecimal
眅
HtmlHexadecimal
眅
Url
%E7%9C%85

Code

MD5
635a790900d65719c97f731f766be6a2
Sha1
a22d647af4c75da865647803c39499b466352071
Base64
55yF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7705';
console.log(char);  // Output: 眅

Java:

char c = '\u7705';
System.out.println(c);  // Output: 眅

JSON:

{"text": "\u7705"}  // Value: 眅

Python:

char = '\u7705'
print(char)  # Output: 眅

Perl:

my $char = "\x{7705}";
print $char;  # Output: 眅

PHP:

$char = "\x{7705}";
echo $char;  // Output: 眅

Ruby:

char = "\u{7705}"
puts char  # Output: 眅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007705";  /* Display: 眅 */
}

HTML Decimal:

<p>HTML decimal: &#30469;</p>  <!-- Display: 眅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7705;</p>  <!-- Display: 眅 -->

URL Encoding:

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

Encodings

MD5:

635a790900d65719c97f731f766be6a2

SHA1:

a22d647af4c75da865647803c39499b466352071

Base64:

55yF