Unicode Finder

"迫" U+8FEB(CJK UNIFIED IDEOGRAPH-8FEB)

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

Programming

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

Web

CSS
\008FEB
HtmlDecimal
迫
HtmlHexadecimal
迫
Url
%E8%BF%AB

Code

MD5
a563929836614836974f85badf2e9159
Sha1
dcb44f51abdd7288909944c18f26733d9e53c4fa
Base64
6L+r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FEB';
console.log(char);  // Output: 迫

Java:

char c = '\u8FEB';
System.out.println(c);  // Output: 迫

JSON:

{"text": "\u8FEB"}  // Value: 迫

Python:

char = '\u8FEB'
print(char)  # Output: 迫

Perl:

my $char = "\x{8FEB}";
print $char;  # Output: 迫

PHP:

$char = "\x{8FEB}";
echo $char;  // Output: 迫

Ruby:

char = "\u{8FEB}"
puts char  # Output: 迫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36843;</p>  <!-- Display: 迫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FEB;</p>  <!-- Display: 迫 -->

URL Encoding:

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

Encodings

MD5:

a563929836614836974f85badf2e9159

SHA1:

dcb44f51abdd7288909944c18f26733d9e53c4fa

Base64:

6L+r