Unicode Finder

"袅" U+8885(CJK UNIFIED IDEOGRAPH-8885)

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

Programming

C
\u8885
JavaScript
\u8885
Java
\u8885
Json
\u8885
Python
\u8885
Perl
\x{8885}
PHP
\x{8885}
Ruby
\u{8885}
Rust
\u{8885}
Go
\u8885

Web

CSS
\008885
HtmlDecimal
袅
HtmlHexadecimal
袅
Url
%E8%A2%85

Code

MD5
115fdf8276188c35a99f3bfb231bcf93
Sha1
f1fdf9eb7052dc52affc5a4fd97cc7e6458fc075
Base64
6KKF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8885';
console.log(char);  // Output: 袅

Java:

char c = '\u8885';
System.out.println(c);  // Output: 袅

JSON:

{"text": "\u8885"}  // Value: 袅

Python:

char = '\u8885'
print(char)  # Output: 袅

Perl:

my $char = "\x{8885}";
print $char;  # Output: 袅

PHP:

$char = "\x{8885}";
echo $char;  // Output: 袅

Ruby:

char = "\u{8885}"
puts char  # Output: 袅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008885";  /* Display: 袅 */
}

HTML Decimal:

<p>HTML decimal: &#34949;</p>  <!-- Display: 袅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8885;</p>  <!-- Display: 袅 -->

URL Encoding:

// 袅 URL encoding
https://unicodefinder.com/search.php?query=%E8%A2%85

Encodings

MD5:

115fdf8276188c35a99f3bfb231bcf93

SHA1:

f1fdf9eb7052dc52affc5a4fd97cc7e6458fc075

Base64:

6KKF