Unicode Finder

"佷" U+4F77(CJK UNIFIED IDEOGRAPH-4F77)

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

Programming

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

Web

CSS
\004F77
HtmlDecimal
佷
HtmlHexadecimal
佷
Url
%E4%BD%B7

Code

MD5
b1fb06b7c6e75a2d13a85640dad205d3
Sha1
ec2c95e3b43cc1c99dba7606463aa15d83daa6a6
Base64
5L23

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F77';
console.log(char);  // Output: 佷

Java:

char c = '\u4F77';
System.out.println(c);  // Output: 佷

JSON:

{"text": "\u4F77"}  // Value: 佷

Python:

char = '\u4F77'
print(char)  # Output: 佷

Perl:

my $char = "\x{4F77}";
print $char;  # Output: 佷

PHP:

$char = "\x{4F77}";
echo $char;  // Output: 佷

Ruby:

char = "\u{4F77}"
puts char  # Output: 佷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20343;</p>  <!-- Display: 佷 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F77;</p>  <!-- Display: 佷 -->

URL Encoding:

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

Encodings

MD5:

b1fb06b7c6e75a2d13a85640dad205d3

SHA1:

ec2c95e3b43cc1c99dba7606463aa15d83daa6a6

Base64:

5L23