Unicode Finder

"儒" U+5112(CJK UNIFIED IDEOGRAPH-5112)

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

Programming

C
\u5112
JavaScript
\u5112
Java
\u5112
Json
\u5112
Python
\u5112
Perl
\x{5112}
PHP
\x{5112}
Ruby
\u{5112}
Rust
\u{5112}
Go
\u5112

Web

CSS
\005112
HtmlDecimal
儒
HtmlHexadecimal
儒
Url
%E5%84%92

Code

MD5
45c32487b0d4a7fc770d59276bec34df
Sha1
17cf006df83eaa29f05d51bbd84edba3b3d2f872
Base64
5YSS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5112';
console.log(char);  // Output: 儒

Java:

char c = '\u5112';
System.out.println(c);  // Output: 儒

JSON:

{"text": "\u5112"}  // Value: 儒

Python:

char = '\u5112'
print(char)  # Output: 儒

Perl:

my $char = "\x{5112}";
print $char;  # Output: 儒

PHP:

$char = "\x{5112}";
echo $char;  // Output: 儒

Ruby:

char = "\u{5112}"
puts char  # Output: 儒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005112";  /* Display: 儒 */
}

HTML Decimal:

<p>HTML decimal: &#20754;</p>  <!-- Display: 儒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5112;</p>  <!-- Display: 儒 -->

URL Encoding:

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

Encodings

MD5:

45c32487b0d4a7fc770d59276bec34df

SHA1:

17cf006df83eaa29f05d51bbd84edba3b3d2f872

Base64:

5YSS