Unicode Finder

"迾" U+8FFE(CJK UNIFIED IDEOGRAPH-8FFE)

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

Programming

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

Web

CSS
\008FFE
HtmlDecimal
迾
HtmlHexadecimal
迾
Url
%E8%BF%BE

Code

MD5
8f26fddaf829fcfba4ea44ade3be4533
Sha1
b8c46cad14345bc963cd27b02675a8e57a16c278
Base64
6L++

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FFE';
console.log(char);  // Output: 迾

Java:

char c = '\u8FFE';
System.out.println(c);  // Output: 迾

JSON:

{"text": "\u8FFE"}  // Value: 迾

Python:

char = '\u8FFE'
print(char)  # Output: 迾

Perl:

my $char = "\x{8FFE}";
print $char;  # Output: 迾

PHP:

$char = "\x{8FFE}";
echo $char;  // Output: 迾

Ruby:

char = "\u{8FFE}"
puts char  # Output: 迾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36862;</p>  <!-- Display: 迾 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FFE;</p>  <!-- Display: 迾 -->

URL Encoding:

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

Encodings

MD5:

8f26fddaf829fcfba4ea44ade3be4533

SHA1:

b8c46cad14345bc963cd27b02675a8e57a16c278

Base64:

6L++