Unicode Finder

"侭" U+4FAD(CJK UNIFIED IDEOGRAPH-4FAD)

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

Programming

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

Web

CSS
\004FAD
HtmlDecimal
侭
HtmlHexadecimal
侭
Url
%E4%BE%AD

Code

MD5
c26c9c6bffbeeb7a279d1806b4d94e89
Sha1
ceb841f6f06d382aff018b76e0a7a1242bace42d
Base64
5L6t

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4FAD';
console.log(char);  // Output: 侭

Java:

char c = '\u4FAD';
System.out.println(c);  // Output: 侭

JSON:

{"text": "\u4FAD"}  // Value: 侭

Python:

char = '\u4FAD'
print(char)  # Output: 侭

Perl:

my $char = "\x{4FAD}";
print $char;  # Output: 侭

PHP:

$char = "\x{4FAD}";
echo $char;  // Output: 侭

Ruby:

char = "\u{4FAD}"
puts char  # Output: 侭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20397;</p>  <!-- Display: 侭 -->

HTML Hexadecimal:

<p>HTML hex: &#x4FAD;</p>  <!-- Display: 侭 -->

URL Encoding:

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

Encodings

MD5:

c26c9c6bffbeeb7a279d1806b4d94e89

SHA1:

ceb841f6f06d382aff018b76e0a7a1242bace42d

Base64:

5L6t