Unicode Finder

"进" U+8FDB(CJK UNIFIED IDEOGRAPH-8FDB)

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

Programming

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

Web

CSS
\008FDB
HtmlDecimal
进
HtmlHexadecimal
进
Url
%E8%BF%9B

Code

MD5
0b1b3058fbce51bbf04b9d05e97fdf5f
Sha1
681ba11d21729b170ec7944f2c967b193b2c3963
Base64
6L+b

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FDB';
console.log(char);  // Output: 进

Java:

char c = '\u8FDB';
System.out.println(c);  // Output: 进

JSON:

{"text": "\u8FDB"}  // Value: 进

Python:

char = '\u8FDB'
print(char)  # Output: 进

Perl:

my $char = "\x{8FDB}";
print $char;  # Output: 进

PHP:

$char = "\x{8FDB}";
echo $char;  // Output: 进

Ruby:

char = "\u{8FDB}"
puts char  # Output: 进

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36827;</p>  <!-- Display: 进 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FDB;</p>  <!-- Display: 进 -->

URL Encoding:

// 进 URL encoding
https://unicodefinder.com/search.php?query=%E8%BF%9B

Encodings

MD5:

0b1b3058fbce51bbf04b9d05e97fdf5f

SHA1:

681ba11d21729b170ec7944f2c967b193b2c3963

Base64:

6L+b