Unicode Finder

"侫" U+4FAB(CJK UNIFIED IDEOGRAPH-4FAB)

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

Programming

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

Web

CSS
\004FAB
HtmlDecimal
侫
HtmlHexadecimal
侫
Url
%E4%BE%AB

Code

MD5
0797d3a93b5fbca5eb3aea4efa6c755d
Sha1
a1f390d455756552e03da96d734d3b245fbd4950
Base64
5L6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4FAB';
console.log(char);  // Output: 侫

Java:

char c = '\u4FAB';
System.out.println(c);  // Output: 侫

JSON:

{"text": "\u4FAB"}  // Value: 侫

Python:

char = '\u4FAB'
print(char)  # Output: 侫

Perl:

my $char = "\x{4FAB}";
print $char;  # Output: 侫

PHP:

$char = "\x{4FAB}";
echo $char;  // Output: 侫

Ruby:

char = "\u{4FAB}"
puts char  # Output: 侫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20395;</p>  <!-- Display: 侫 -->

HTML Hexadecimal:

<p>HTML hex: &#x4FAB;</p>  <!-- Display: 侫 -->

URL Encoding:

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

Encodings

MD5:

0797d3a93b5fbca5eb3aea4efa6c755d

SHA1:

a1f390d455756552e03da96d734d3b245fbd4950

Base64:

5L6r