Unicode Finder

"佻" U+4F7B(CJK UNIFIED IDEOGRAPH-4F7B)

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

Programming

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

Web

CSS
\004F7B
HtmlDecimal
佻
HtmlHexadecimal
佻
Url
%E4%BD%BB

Code

MD5
bae1550cd3ff3b860d3be94fe1d8e9d0
Sha1
a9b90babf8717c99b1d440fb02ad3a80ad017698
Base64
5L27

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F7B';
console.log(char);  // Output: 佻

Java:

char c = '\u4F7B';
System.out.println(c);  // Output: 佻

JSON:

{"text": "\u4F7B"}  // Value: 佻

Python:

char = '\u4F7B'
print(char)  # Output: 佻

Perl:

my $char = "\x{4F7B}";
print $char;  # Output: 佻

PHP:

$char = "\x{4F7B}";
echo $char;  // Output: 佻

Ruby:

char = "\u{4F7B}"
puts char  # Output: 佻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20347;</p>  <!-- Display: 佻 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F7B;</p>  <!-- Display: 佻 -->

URL Encoding:

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

Encodings

MD5:

bae1550cd3ff3b860d3be94fe1d8e9d0

SHA1:

a9b90babf8717c99b1d440fb02ad3a80ad017698

Base64:

5L27