Unicode Finder

"辮" U+8FAE(CJK UNIFIED IDEOGRAPH-8FAE)

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

Programming

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

Web

CSS
\008FAE
HtmlDecimal
辮
HtmlHexadecimal
辮
Url
%E8%BE%AE

Code

MD5
e3e8e567bf1a7bde2a3f832346f60b05
Sha1
51ec199f00ea909269f0cc16797d985a4fac0951
Base64
6L6u

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FAE';
console.log(char);  // Output: 辮

Java:

char c = '\u8FAE';
System.out.println(c);  // Output: 辮

JSON:

{"text": "\u8FAE"}  // Value: 辮

Python:

char = '\u8FAE'
print(char)  # Output: 辮

Perl:

my $char = "\x{8FAE}";
print $char;  # Output: 辮

PHP:

$char = "\x{8FAE}";
echo $char;  // Output: 辮

Ruby:

char = "\u{8FAE}"
puts char  # Output: 辮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36782;</p>  <!-- Display: 辮 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FAE;</p>  <!-- Display: 辮 -->

URL Encoding:

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

Encodings

MD5:

e3e8e567bf1a7bde2a3f832346f60b05

SHA1:

51ec199f00ea909269f0cc16797d985a4fac0951

Base64:

6L6u