Unicode Finder

"儗" U+5117(CJK UNIFIED IDEOGRAPH-5117)

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

Programming

C
\u5117
JavaScript
\u5117
Java
\u5117
Json
\u5117
Python
\u5117
Perl
\x{5117}
PHP
\x{5117}
Ruby
\u{5117}
Rust
\u{5117}
Go
\u5117

Web

CSS
\005117
HtmlDecimal
儗
HtmlHexadecimal
儗
Url
%E5%84%97

Code

MD5
759475f0d156c07f924379769aced9ab
Sha1
9a07201f21745fcb704921626d5846c0a7522684
Base64
5YSX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5117';
console.log(char);  // Output: 儗

Java:

char c = '\u5117';
System.out.println(c);  // Output: 儗

JSON:

{"text": "\u5117"}  // Value: 儗

Python:

char = '\u5117'
print(char)  # Output: 儗

Perl:

my $char = "\x{5117}";
print $char;  # Output: 儗

PHP:

$char = "\x{5117}";
echo $char;  // Output: 儗

Ruby:

char = "\u{5117}"
puts char  # Output: 儗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005117";  /* Display: 儗 */
}

HTML Decimal:

<p>HTML decimal: &#20759;</p>  <!-- Display: 儗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5117;</p>  <!-- Display: 儗 -->

URL Encoding:

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

Encodings

MD5:

759475f0d156c07f924379769aced9ab

SHA1:

9a07201f21745fcb704921626d5846c0a7522684

Base64:

5YSX