Unicode Finder

"佫" U+4F6B(CJK UNIFIED IDEOGRAPH-4F6B)

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

Programming

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

Web

CSS
\004F6B
HtmlDecimal
佫
HtmlHexadecimal
佫
Url
%E4%BD%AB

Code

MD5
7b7fd3d6f35daf24c5d8f513240fa138
Sha1
01d128e40b2fea406fca006f278bb0eccba0f597
Base64
5L2r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F6B';
console.log(char);  // Output: 佫

Java:

char c = '\u4F6B';
System.out.println(c);  // Output: 佫

JSON:

{"text": "\u4F6B"}  // Value: 佫

Python:

char = '\u4F6B'
print(char)  # Output: 佫

Perl:

my $char = "\x{4F6B}";
print $char;  # Output: 佫

PHP:

$char = "\x{4F6B}";
echo $char;  // Output: 佫

Ruby:

char = "\u{4F6B}"
puts char  # Output: 佫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20331;</p>  <!-- Display: 佫 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F6B;</p>  <!-- Display: 佫 -->

URL Encoding:

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

Encodings

MD5:

7b7fd3d6f35daf24c5d8f513240fa138

SHA1:

01d128e40b2fea406fca006f278bb0eccba0f597

Base64:

5L2r