Unicode Finder

"近" U+8FD1(CJK UNIFIED IDEOGRAPH-8FD1)

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

Programming

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

Web

CSS
\008FD1
HtmlDecimal
近
HtmlHexadecimal
近
Url
%E8%BF%91

Code

MD5
c68a31cb466b3160ee42988728d19a7e
Sha1
d8c84172acf3b8a2ac35d124db209dcd1c55c728
Base64
6L+R

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FD1';
console.log(char);  // Output: 近

Java:

char c = '\u8FD1';
System.out.println(c);  // Output: 近

JSON:

{"text": "\u8FD1"}  // Value: 近

Python:

char = '\u8FD1'
print(char)  # Output: 近

Perl:

my $char = "\x{8FD1}";
print $char;  # Output: 近

PHP:

$char = "\x{8FD1}";
echo $char;  // Output: 近

Ruby:

char = "\u{8FD1}"
puts char  # Output: 近

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36817;</p>  <!-- Display: 近 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FD1;</p>  <!-- Display: 近 -->

URL Encoding:

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

Encodings

MD5:

c68a31cb466b3160ee42988728d19a7e

SHA1:

d8c84172acf3b8a2ac35d124db209dcd1c55c728

Base64:

6L+R