Unicode Finder

"偏" U+504F(CJK UNIFIED IDEOGRAPH-504F)

U+504F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-504F

Programming

C
\u504F
JavaScript
\u504F
Java
\u504F
Json
\u504F
Python
\u504F
Perl
\x{504F}
PHP
\x{504F}
Ruby
\u{504F}
Rust
\u{504F}
Go
\u504F

Web

CSS
\00504F
HtmlDecimal
偏
HtmlHexadecimal
偏
Url
%E5%81%8F

Code

MD5
f4abd014736e5724517c5e588f192c53
Sha1
9e92718cbb87ec9a5819983f33e84ee786e3cf7d
Base64
5YGP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u504F';
console.log(char);  // Output: 偏

Java:

char c = '\u504F';
System.out.println(c);  // Output: 偏

JSON:

{"text": "\u504F"}  // Value: 偏

Python:

char = '\u504F'
print(char)  # Output: 偏

Perl:

my $char = "\x{504F}";
print $char;  # Output: 偏

PHP:

$char = "\x{504F}";
echo $char;  // Output: 偏

Ruby:

char = "\u{504F}"
puts char  # Output: 偏

Rust:

let c = '\u{504F}';
println!("{}", c);  // Output: 偏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00504F";  /* Display: 偏 */
}

HTML Decimal:

<p>HTML decimal: &#20559;</p>  <!-- Display: 偏 -->

HTML Hexadecimal:

<p>HTML hex: &#x504F;</p>  <!-- Display: 偏 -->

URL Encoding:

// 偏 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%8F

Encodings

MD5:

f4abd014736e5724517c5e588f192c53

SHA1:

9e92718cbb87ec9a5819983f33e84ee786e3cf7d

Base64:

5YGP