Unicode Finder

"儣" U+5123(CJK UNIFIED IDEOGRAPH-5123)

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

Programming

C
\u5123
JavaScript
\u5123
Java
\u5123
Json
\u5123
Python
\u5123
Perl
\x{5123}
PHP
\x{5123}
Ruby
\u{5123}
Rust
\u{5123}
Go
\u5123

Web

CSS
\005123
HtmlDecimal
儣
HtmlHexadecimal
儣
Url
%E5%84%A3

Code

MD5
c551f8a6d295a549d0a0c72b8d24b7b7
Sha1
07d9dd0637e82f276a65a28ff70ea0811e9a3580
Base64
5YSj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5123';
console.log(char);  // Output: 儣

Java:

char c = '\u5123';
System.out.println(c);  // Output: 儣

JSON:

{"text": "\u5123"}  // Value: 儣

Python:

char = '\u5123'
print(char)  # Output: 儣

Perl:

my $char = "\x{5123}";
print $char;  # Output: 儣

PHP:

$char = "\x{5123}";
echo $char;  // Output: 儣

Ruby:

char = "\u{5123}"
puts char  # Output: 儣

Rust:

let c = '\u{5123}';
println!("{}", c);  // Output: 儣

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005123";  /* Display: 儣 */
}

HTML Decimal:

<p>HTML decimal: &#20771;</p>  <!-- Display: 儣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5123;</p>  <!-- Display: 儣 -->

URL Encoding:

// 儣 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%A3

Encodings

MD5:

c551f8a6d295a549d0a0c72b8d24b7b7

SHA1:

07d9dd0637e82f276a65a28ff70ea0811e9a3580

Base64:

5YSj