Unicode Finder

"伉" U+4F09(CJK UNIFIED IDEOGRAPH-4F09)

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

Programming

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

Web

CSS
\004F09
HtmlDecimal
伉
HtmlHexadecimal
伉
Url
%E4%BC%89

Code

MD5
a2199dbb00aad536508fe27e805978e5
Sha1
06045703a06aff0c034d23964e34f1ed006f6701
Base64
5LyJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F09';
console.log(char);  // Output: 伉

Java:

char c = '\u4F09';
System.out.println(c);  // Output: 伉

JSON:

{"text": "\u4F09"}  // Value: 伉

Python:

char = '\u4F09'
print(char)  # Output: 伉

Perl:

my $char = "\x{4F09}";
print $char;  # Output: 伉

PHP:

$char = "\x{4F09}";
echo $char;  // Output: 伉

Ruby:

char = "\u{4F09}"
puts char  # Output: 伉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20233;</p>  <!-- Display: 伉 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F09;</p>  <!-- Display: 伉 -->

URL Encoding:

// 伉 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%89

Encodings

MD5:

a2199dbb00aad536508fe27e805978e5

SHA1:

06045703a06aff0c034d23964e34f1ed006f6701

Base64:

5LyJ