Unicode Finder

"远" U+8FDC(CJK UNIFIED IDEOGRAPH-8FDC)

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

Programming

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

Web

CSS
\008FDC
HtmlDecimal
远
HtmlHexadecimal
远
Url
%E8%BF%9C

Code

MD5
6619176b571be85f7970fa92c84f0aeb
Sha1
e7338d5c8e4e1b150274a1da713bc2ce149ebe4f
Base64
6L+c

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FDC';
console.log(char);  // Output: 远

Java:

char c = '\u8FDC';
System.out.println(c);  // Output: 远

JSON:

{"text": "\u8FDC"}  // Value: 远

Python:

char = '\u8FDC'
print(char)  # Output: 远

Perl:

my $char = "\x{8FDC}";
print $char;  # Output: 远

PHP:

$char = "\x{8FDC}";
echo $char;  // Output: 远

Ruby:

char = "\u{8FDC}"
puts char  # Output: 远

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36828;</p>  <!-- Display: 远 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FDC;</p>  <!-- Display: 远 -->

URL Encoding:

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

Encodings

MD5:

6619176b571be85f7970fa92c84f0aeb

SHA1:

e7338d5c8e4e1b150274a1da713bc2ce149ebe4f

Base64:

6L+c