Unicode Finder

"闌" U+95CC(CJK UNIFIED IDEOGRAPH-95CC)

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

Programming

C
\u95CC
JavaScript
\u95CC
Java
\u95CC
Json
\u95CC
Python
\u95CC
Perl
\x{95CC}
PHP
\x{95CC}
Ruby
\u{95CC}
Rust
\u{95CC}
Go
\u95CC

Web

CSS
\0095CC
HtmlDecimal
闌
HtmlHexadecimal
闌
Url
%E9%97%8C

Code

MD5
1fd5afcd0320445cd608e4be5c9390f4
Sha1
a95c84a5aa7d63fbebdf9264195938416e42c923
Base64
6ZeM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95CC';
console.log(char);  // Output: 闌

Java:

char c = '\u95CC';
System.out.println(c);  // Output: 闌

JSON:

{"text": "\u95CC"}  // Value: 闌

Python:

char = '\u95CC'
print(char)  # Output: 闌

Perl:

my $char = "\x{95CC}";
print $char;  # Output: 闌

PHP:

$char = "\x{95CC}";
echo $char;  // Output: 闌

Ruby:

char = "\u{95CC}"
puts char  # Output: 闌

Rust:

let c = '\u{95CC}';
println!("{}", c);  // Output: 闌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0095CC";  /* Display: 闌 */
}

HTML Decimal:

<p>HTML decimal: &#38348;</p>  <!-- Display: 闌 -->

HTML Hexadecimal:

<p>HTML hex: &#x95CC;</p>  <!-- Display: 闌 -->

URL Encoding:

// 闌 URL encoding
https://unicodefinder.com/search.php?query=%E9%97%8C

Encodings

MD5:

1fd5afcd0320445cd608e4be5c9390f4

SHA1:

a95c84a5aa7d63fbebdf9264195938416e42c923

Base64:

6ZeM