Unicode Finder

"翺" U+7FFA(CJK UNIFIED IDEOGRAPH-7FFA)

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

Programming

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

Web

CSS
\007FFA
HtmlDecimal
翺
HtmlHexadecimal
翺
Url
%E7%BF%BA

Code

MD5
bf6d75321f03e7fea053754da6c47bc1
Sha1
be25b85ce6263ff052213984ce8ec5ce95b7bdc6
Base64
57+6

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FFA';
console.log(char);  // Output: 翺

Java:

char c = '\u7FFA';
System.out.println(c);  // Output: 翺

JSON:

{"text": "\u7FFA"}  // Value: 翺

Python:

char = '\u7FFA'
print(char)  # Output: 翺

Perl:

my $char = "\x{7FFA}";
print $char;  # Output: 翺

PHP:

$char = "\x{7FFA}";
echo $char;  // Output: 翺

Ruby:

char = "\u{7FFA}"
puts char  # Output: 翺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32762;</p>  <!-- Display: 翺 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FFA;</p>  <!-- Display: 翺 -->

URL Encoding:

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

Encodings

MD5:

bf6d75321f03e7fea053754da6c47bc1

SHA1:

be25b85ce6263ff052213984ce8ec5ce95b7bdc6

Base64:

57+6