Unicode Finder

"儘" U+5118(CJK UNIFIED IDEOGRAPH-5118)

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

Programming

C
\u5118
JavaScript
\u5118
Java
\u5118
Json
\u5118
Python
\u5118
Perl
\x{5118}
PHP
\x{5118}
Ruby
\u{5118}
Rust
\u{5118}
Go
\u5118

Web

CSS
\005118
HtmlDecimal
儘
HtmlHexadecimal
儘
Url
%E5%84%98

Code

MD5
135c239ea648bdaed24159d78e80697d
Sha1
07ebfd2220876228a3765463b2cd4f78ee052210
Base64
5YSY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5118';
console.log(char);  // Output: 儘

Java:

char c = '\u5118';
System.out.println(c);  // Output: 儘

JSON:

{"text": "\u5118"}  // Value: 儘

Python:

char = '\u5118'
print(char)  # Output: 儘

Perl:

my $char = "\x{5118}";
print $char;  # Output: 儘

PHP:

$char = "\x{5118}";
echo $char;  // Output: 儘

Ruby:

char = "\u{5118}"
puts char  # Output: 儘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005118";  /* Display: 儘 */
}

HTML Decimal:

<p>HTML decimal: &#20760;</p>  <!-- Display: 儘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5118;</p>  <!-- Display: 儘 -->

URL Encoding:

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

Encodings

MD5:

135c239ea648bdaed24159d78e80697d

SHA1:

07ebfd2220876228a3765463b2cd4f78ee052210

Base64:

5YSY