Unicode Finder

"佖" U+4F56(CJK UNIFIED IDEOGRAPH-4F56)

U+4F56
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4F56

Programming

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

Web

CSS
\004F56
HtmlDecimal
佖
HtmlHexadecimal
佖
Url
%E4%BD%96

Code

MD5
46f15cf65a60a8483e50ac7a15127ded
Sha1
9d709e0bbd4809a0c175647ee37ef95252148836
Base64
5L2W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F56';
console.log(char);  // Output: 佖

Java:

char c = '\u4F56';
System.out.println(c);  // Output: 佖

JSON:

{"text": "\u4F56"}  // Value: 佖

Python:

char = '\u4F56'
print(char)  # Output: 佖

Perl:

my $char = "\x{4F56}";
print $char;  # Output: 佖

PHP:

$char = "\x{4F56}";
echo $char;  // Output: 佖

Ruby:

char = "\u{4F56}"
puts char  # Output: 佖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20310;</p>  <!-- Display: 佖 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F56;</p>  <!-- Display: 佖 -->

URL Encoding:

// 佖 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%96

Encodings

MD5:

46f15cf65a60a8483e50ac7a15127ded

SHA1:

9d709e0bbd4809a0c175647ee37ef95252148836

Base64:

5L2W