Unicode Finder

"翼" U+7FFC(CJK UNIFIED IDEOGRAPH-7FFC)

U+7FFC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7FFC

Programming

C
\u7FFC
JavaScript
\u7FFC
Java
\u7FFC
Json
\u7FFC
Python
\u7FFC
Perl
\x{7FFC}
PHP
\x{7FFC}
Ruby
\u{7FFC}
Rust
\u{7FFC}
Go
\u7FFC

Web

CSS
\007FFC
HtmlDecimal
翼
HtmlHexadecimal
翼
Url
%E7%BF%BC

Code

MD5
ede6c8ccd46474cecf5ec5fd9c21901c
Sha1
8a46453908a761f4db926480da68d4d3c1c1a4eb
Base64
57+8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FFC';
console.log(char);  // Output: 翼

Java:

char c = '\u7FFC';
System.out.println(c);  // Output: 翼

JSON:

{"text": "\u7FFC"}  // Value: 翼

Python:

char = '\u7FFC'
print(char)  # Output: 翼

Perl:

my $char = "\x{7FFC}";
print $char;  # Output: 翼

PHP:

$char = "\x{7FFC}";
echo $char;  // Output: 翼

Ruby:

char = "\u{7FFC}"
puts char  # Output: 翼

Rust:

let c = '\u{7FFC}';
println!("{}", c);  // Output: 翼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007FFC";  /* Display: 翼 */
}

HTML Decimal:

<p>HTML decimal: &#32764;</p>  <!-- Display: 翼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FFC;</p>  <!-- Display: 翼 -->

URL Encoding:

// 翼 URL encoding
https://unicodefinder.com/search.php?query=%E7%BF%BC

Encodings

MD5:

ede6c8ccd46474cecf5ec5fd9c21901c

SHA1:

8a46453908a761f4db926480da68d4d3c1c1a4eb

Base64:

57+8