Unicode Finder

"辫" U+8FAB(CJK UNIFIED IDEOGRAPH-8FAB)

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

Programming

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

Web

CSS
\008FAB
HtmlDecimal
辫
HtmlHexadecimal
辫
Url
%E8%BE%AB

Code

MD5
bd6d059cdb205cc51015f1c8363ec9d1
Sha1
729de364f220e72c2277a3f4e5b85ed4f5c091ba
Base64
6L6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8FAB';
console.log(char);  // Output: 辫

Java:

char c = '\u8FAB';
System.out.println(c);  // Output: 辫

JSON:

{"text": "\u8FAB"}  // Value: 辫

Python:

char = '\u8FAB'
print(char)  # Output: 辫

Perl:

my $char = "\x{8FAB}";
print $char;  # Output: 辫

PHP:

$char = "\x{8FAB}";
echo $char;  // Output: 辫

Ruby:

char = "\u{8FAB}"
puts char  # Output: 辫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36779;</p>  <!-- Display: 辫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FAB;</p>  <!-- Display: 辫 -->

URL Encoding:

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

Encodings

MD5:

bd6d059cdb205cc51015f1c8363ec9d1

SHA1:

729de364f220e72c2277a3f4e5b85ed4f5c091ba

Base64:

6L6r