Unicode Finder

"迼" U+8FFC(CJK UNIFIED IDEOGRAPH-8FFC)

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

Programming

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

Web

CSS
\008FFC
HtmlDecimal
迼
HtmlHexadecimal
迼
Url
%E8%BF%BC

Code

MD5
85cac9d0de2a08e630447219e607a0f9
Sha1
a9f429a50f8d836a481cb8d215f3ebf101358ea9
Base64
6L+8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FFC';
console.log(char);  // Output: 迼

Java:

char c = '\u8FFC';
System.out.println(c);  // Output: 迼

JSON:

{"text": "\u8FFC"}  // Value: 迼

Python:

char = '\u8FFC'
print(char)  # Output: 迼

Perl:

my $char = "\x{8FFC}";
print $char;  # Output: 迼

PHP:

$char = "\x{8FFC}";
echo $char;  // Output: 迼

Ruby:

char = "\u{8FFC}"
puts char  # Output: 迼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36860;</p>  <!-- Display: 迼 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FFC;</p>  <!-- Display: 迼 -->

URL Encoding:

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

Encodings

MD5:

85cac9d0de2a08e630447219e607a0f9

SHA1:

a9f429a50f8d836a481cb8d215f3ebf101358ea9

Base64:

6L+8