Unicode Finder

"闇" U+95C7(CJK UNIFIED IDEOGRAPH-95C7)

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

Programming

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

Web

CSS
\0095C7
HtmlDecimal
闇
HtmlHexadecimal
闇
Url
%E9%97%87

Code

MD5
1ec3915c91a9d45acc423efd3385bbac
Sha1
0e9f166c7e132f194a7fc4bd27e01274334d94b9
Base64
6ZeH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95C7';
console.log(char);  // Output: 闇

Java:

char c = '\u95C7';
System.out.println(c);  // Output: 闇

JSON:

{"text": "\u95C7"}  // Value: 闇

Python:

char = '\u95C7'
print(char)  # Output: 闇

Perl:

my $char = "\x{95C7}";
print $char;  # Output: 闇

PHP:

$char = "\x{95C7}";
echo $char;  // Output: 闇

Ruby:

char = "\u{95C7}"
puts char  # Output: 闇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38343;</p>  <!-- Display: 闇 -->

HTML Hexadecimal:

<p>HTML hex: &#x95C7;</p>  <!-- Display: 闇 -->

URL Encoding:

// 闇 URL encoding
https://unicodefinder.com/search.php?query=%E9%97%87

Encodings

MD5:

1ec3915c91a9d45acc423efd3385bbac

SHA1:

0e9f166c7e132f194a7fc4bd27e01274334d94b9

Base64:

6ZeH