Unicode Finder

"卿" U+537F(CJK UNIFIED IDEOGRAPH-537F)

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

Programming

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

Web

CSS
\00537F
HtmlDecimal
卿
HtmlHexadecimal
卿
Url
%E5%8D%BF

Code

MD5
30a91c904c6ff721b79ebdeaa0b78387
Sha1
47bfabd246af9051252f5ee9bec71ea01904b8b5
Base64
5Y2/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u537F';
console.log(char);  // Output: 卿

Java:

char c = '\u537F';
System.out.println(c);  // Output: 卿

JSON:

{"text": "\u537F"}  // Value: 卿

Python:

char = '\u537F'
print(char)  # Output: 卿

Perl:

my $char = "\x{537F}";
print $char;  # Output: 卿

PHP:

$char = "\x{537F}";
echo $char;  // Output: 卿

Ruby:

char = "\u{537F}"
puts char  # Output: 卿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21375;</p>  <!-- Display: 卿 -->

HTML Hexadecimal:

<p>HTML hex: &#x537F;</p>  <!-- Display: 卿 -->

URL Encoding:

// 卿 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%BF

Encodings

MD5:

30a91c904c6ff721b79ebdeaa0b78387

SHA1:

47bfabd246af9051252f5ee9bec71ea01904b8b5

Base64:

5Y2/