Unicode Finder

"儓" U+5113(CJK UNIFIED IDEOGRAPH-5113)

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

Programming

C
\u5113
JavaScript
\u5113
Java
\u5113
Json
\u5113
Python
\u5113
Perl
\x{5113}
PHP
\x{5113}
Ruby
\u{5113}
Rust
\u{5113}
Go
\u5113

Web

CSS
\005113
HtmlDecimal
儓
HtmlHexadecimal
儓
Url
%E5%84%93

Code

MD5
7a7453d8de603efcc0f74521da736906
Sha1
f5863b1392bf724116daad64f832806f682277cf
Base64
5YST

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5113';
console.log(char);  // Output: 儓

Java:

char c = '\u5113';
System.out.println(c);  // Output: 儓

JSON:

{"text": "\u5113"}  // Value: 儓

Python:

char = '\u5113'
print(char)  # Output: 儓

Perl:

my $char = "\x{5113}";
print $char;  # Output: 儓

PHP:

$char = "\x{5113}";
echo $char;  // Output: 儓

Ruby:

char = "\u{5113}"
puts char  # Output: 儓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005113";  /* Display: 儓 */
}

HTML Decimal:

<p>HTML decimal: &#20755;</p>  <!-- Display: 儓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5113;</p>  <!-- Display: 儓 -->

URL Encoding:

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

Encodings

MD5:

7a7453d8de603efcc0f74521da736906

SHA1:

f5863b1392bf724116daad64f832806f682277cf

Base64:

5YST