Unicode Finder

"佱" U+4F71(CJK UNIFIED IDEOGRAPH-4F71)

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

Programming

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

Web

CSS
\004F71
HtmlDecimal
佱
HtmlHexadecimal
佱
Url
%E4%BD%B1

Code

MD5
b65a0d6e7ff0ee279b0d02df800bf8a0
Sha1
74fb7299e21352832547a8762f64c3115fdde554
Base64
5L2x

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F71';
console.log(char);  // Output: 佱

Java:

char c = '\u4F71';
System.out.println(c);  // Output: 佱

JSON:

{"text": "\u4F71"}  // Value: 佱

Python:

char = '\u4F71'
print(char)  # Output: 佱

Perl:

my $char = "\x{4F71}";
print $char;  # Output: 佱

PHP:

$char = "\x{4F71}";
echo $char;  // Output: 佱

Ruby:

char = "\u{4F71}"
puts char  # Output: 佱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20337;</p>  <!-- Display: 佱 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F71;</p>  <!-- Display: 佱 -->

URL Encoding:

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

Encodings

MD5:

b65a0d6e7ff0ee279b0d02df800bf8a0

SHA1:

74fb7299e21352832547a8762f64c3115fdde554

Base64:

5L2x