Unicode Finder

"迺" U+8FFA(CJK UNIFIED IDEOGRAPH-8FFA)

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

Programming

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

Web

CSS
\008FFA
HtmlDecimal
迺
HtmlHexadecimal
迺
Url
%E8%BF%BA

Code

MD5
1d505fbfc62e7ee7e41829a7625fa8cd
Sha1
a813942d01abfc4dd5448f92818c3511c1767c50
Base64
6L+6

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FFA';
console.log(char);  // Output: 迺

Java:

char c = '\u8FFA';
System.out.println(c);  // Output: 迺

JSON:

{"text": "\u8FFA"}  // Value: 迺

Python:

char = '\u8FFA'
print(char)  # Output: 迺

Perl:

my $char = "\x{8FFA}";
print $char;  # Output: 迺

PHP:

$char = "\x{8FFA}";
echo $char;  // Output: 迺

Ruby:

char = "\u{8FFA}"
puts char  # Output: 迺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36858;</p>  <!-- Display: 迺 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FFA;</p>  <!-- Display: 迺 -->

URL Encoding:

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

Encodings

MD5:

1d505fbfc62e7ee7e41829a7625fa8cd

SHA1:

a813942d01abfc4dd5448f92818c3511c1767c50

Base64:

6L+6