Unicode Finder

"靛" U+975B(CJK UNIFIED IDEOGRAPH-975B)

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

Programming

C
\u975B
JavaScript
\u975B
Java
\u975B
Json
\u975B
Python
\u975B
Perl
\x{975B}
PHP
\x{975B}
Ruby
\u{975B}
Rust
\u{975B}
Go
\u975B

Web

CSS
\00975B
HtmlDecimal
靛
HtmlHexadecimal
靛
Url
%E9%9D%9B

Code

MD5
78f51aff680a289d62747bc796fbaff5
Sha1
9d5220355df2f7bea88f6a023ad80254fee1eddb
Base64
6Z2b

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u975B';
console.log(char);  // Output: 靛

Java:

char c = '\u975B';
System.out.println(c);  // Output: 靛

JSON:

{"text": "\u975B"}  // Value: 靛

Python:

char = '\u975B'
print(char)  # Output: 靛

Perl:

my $char = "\x{975B}";
print $char;  # Output: 靛

PHP:

$char = "\x{975B}";
echo $char;  // Output: 靛

Ruby:

char = "\u{975B}"
puts char  # Output: 靛

Rust:

let c = '\u{975B}';
println!("{}", c);  // Output: 靛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00975B";  /* Display: 靛 */
}

HTML Decimal:

<p>HTML decimal: &#38747;</p>  <!-- Display: 靛 -->

HTML Hexadecimal:

<p>HTML hex: &#x975B;</p>  <!-- Display: 靛 -->

URL Encoding:

// 靛 URL encoding
https://unicodefinder.com/search.php?query=%E9%9D%9B

Encodings

MD5:

78f51aff680a289d62747bc796fbaff5

SHA1:

9d5220355df2f7bea88f6a023ad80254fee1eddb

Base64:

6Z2b