Unicode Finder

"伊" U+4F0A(CJK UNIFIED IDEOGRAPH-4F0A)

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

Programming

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

Web

CSS
\004F0A
HtmlDecimal
伊
HtmlHexadecimal
伊
Url
%E4%BC%8A

Code

MD5
99c5f660f7069f4ab87eeaefb2c2d896
Sha1
9169f4cccecb7c62ea5bf49a66929c8f6e0039d8
Base64
5LyK

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F0A';
console.log(char);  // Output: 伊

Java:

char c = '\u4F0A';
System.out.println(c);  // Output: 伊

JSON:

{"text": "\u4F0A"}  // Value: 伊

Python:

char = '\u4F0A'
print(char)  # Output: 伊

Perl:

my $char = "\x{4F0A}";
print $char;  # Output: 伊

PHP:

$char = "\x{4F0A}";
echo $char;  // Output: 伊

Ruby:

char = "\u{4F0A}"
puts char  # Output: 伊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20234;</p>  <!-- Display: 伊 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F0A;</p>  <!-- Display: 伊 -->

URL Encoding:

// 伊 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%8A

Encodings

MD5:

99c5f660f7069f4ab87eeaefb2c2d896

SHA1:

9169f4cccecb7c62ea5bf49a66929c8f6e0039d8

Base64:

5LyK