Unicode Finder

"街" U+8857(CJK UNIFIED IDEOGRAPH-8857)

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

Programming

C
\u8857
JavaScript
\u8857
Java
\u8857
Json
\u8857
Python
\u8857
Perl
\x{8857}
PHP
\x{8857}
Ruby
\u{8857}
Rust
\u{8857}
Go
\u8857

Web

CSS
\008857
HtmlDecimal
街
HtmlHexadecimal
街
Url
%E8%A1%97

Code

MD5
39ca614fcbd978cb3b908958ac5476ff
Sha1
e5dd1a0b8f21982bca628488527b2e0746632c46
Base64
6KGX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8857';
console.log(char);  // Output: 街

Java:

char c = '\u8857';
System.out.println(c);  // Output: 街

JSON:

{"text": "\u8857"}  // Value: 街

Python:

char = '\u8857'
print(char)  # Output: 街

Perl:

my $char = "\x{8857}";
print $char;  # Output: 街

PHP:

$char = "\x{8857}";
echo $char;  // Output: 街

Ruby:

char = "\u{8857}"
puts char  # Output: 街

Rust:

let c = '\u{8857}';
println!("{}", c);  // Output: 街

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008857";  /* Display: 街 */
}

HTML Decimal:

<p>HTML decimal: &#34903;</p>  <!-- Display: 街 -->

HTML Hexadecimal:

<p>HTML hex: &#x8857;</p>  <!-- Display: 街 -->

URL Encoding:

// 街 URL encoding
https://unicodefinder.com/search.php?query=%E8%A1%97

Encodings

MD5:

39ca614fcbd978cb3b908958ac5476ff

SHA1:

e5dd1a0b8f21982bca628488527b2e0746632c46

Base64:

6KGX