Unicode Finder

"辿" U+8FBF(CJK UNIFIED IDEOGRAPH-8FBF)

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

Programming

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

Web

CSS
\008FBF
HtmlDecimal
辿
HtmlHexadecimal
辿
Url
%E8%BE%BF

Code

MD5
d5d792fad43f282da4dfcccb18943e0c
Sha1
1d972f7cabf8aa08952cd8ddb25dc26d07cbcfb4
Base64
6L6/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FBF';
console.log(char);  // Output: 辿

Java:

char c = '\u8FBF';
System.out.println(c);  // Output: 辿

JSON:

{"text": "\u8FBF"}  // Value: 辿

Python:

char = '\u8FBF'
print(char)  # Output: 辿

Perl:

my $char = "\x{8FBF}";
print $char;  # Output: 辿

PHP:

$char = "\x{8FBF}";
echo $char;  // Output: 辿

Ruby:

char = "\u{8FBF}"
puts char  # Output: 辿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36799;</p>  <!-- Display: 辿 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FBF;</p>  <!-- Display: 辿 -->

URL Encoding:

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

Encodings

MD5:

d5d792fad43f282da4dfcccb18943e0c

SHA1:

1d972f7cabf8aa08952cd8ddb25dc26d07cbcfb4

Base64:

6L6/