Unicode Finder

"辻" U+8FBB(CJK UNIFIED IDEOGRAPH-8FBB)

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

Programming

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

Web

CSS
\008FBB
HtmlDecimal
辻
HtmlHexadecimal
辻
Url
%E8%BE%BB

Code

MD5
85056e736447b097172652e6ee994d9d
Sha1
c87f5e2a6c6df27a9afa20cf2a38f63050c2b6a4
Base64
6L67

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FBB';
console.log(char);  // Output: 辻

Java:

char c = '\u8FBB';
System.out.println(c);  // Output: 辻

JSON:

{"text": "\u8FBB"}  // Value: 辻

Python:

char = '\u8FBB'
print(char)  # Output: 辻

Perl:

my $char = "\x{8FBB}";
print $char;  # Output: 辻

PHP:

$char = "\x{8FBB}";
echo $char;  // Output: 辻

Ruby:

char = "\u{8FBB}"
puts char  # Output: 辻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36795;</p>  <!-- Display: 辻 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FBB;</p>  <!-- Display: 辻 -->

URL Encoding:

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

Encodings

MD5:

85056e736447b097172652e6ee994d9d

SHA1:

c87f5e2a6c6df27a9afa20cf2a38f63050c2b6a4

Base64:

6L67