Unicode Finder

"阜" U+961C(CJK UNIFIED IDEOGRAPH-961C)

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

Programming

C
\u961C
JavaScript
\u961C
Java
\u961C
Json
\u961C
Python
\u961C
Perl
\x{961C}
PHP
\x{961C}
Ruby
\u{961C}
Rust
\u{961C}
Go
\u961C

Web

CSS
\00961C
HtmlDecimal
阜
HtmlHexadecimal
阜
Url
%E9%98%9C

Code

MD5
fef2262a120d1da2c2c4e81d054db3b8
Sha1
5ebd32d1f1c4da4056dc5244c4b9fdebdeee2b26
Base64
6Zic

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u961C';
console.log(char);  // Output: 阜

Java:

char c = '\u961C';
System.out.println(c);  // Output: 阜

JSON:

{"text": "\u961C"}  // Value: 阜

Python:

char = '\u961C'
print(char)  # Output: 阜

Perl:

my $char = "\x{961C}";
print $char;  # Output: 阜

PHP:

$char = "\x{961C}";
echo $char;  // Output: 阜

Ruby:

char = "\u{961C}"
puts char  # Output: 阜

Rust:

let c = '\u{961C}';
println!("{}", c);  // Output: 阜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00961C";  /* Display: 阜 */
}

HTML Decimal:

<p>HTML decimal: &#38428;</p>  <!-- Display: 阜 -->

HTML Hexadecimal:

<p>HTML hex: &#x961C;</p>  <!-- Display: 阜 -->

URL Encoding:

// 阜 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%9C

Encodings

MD5:

fef2262a120d1da2c2c4e81d054db3b8

SHA1:

5ebd32d1f1c4da4056dc5244c4b9fdebdeee2b26

Base64:

6Zic