Unicode Finder

"郁" U+90C1(CJK UNIFIED IDEOGRAPH-90C1)

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

Programming

C
\u90C1
JavaScript
\u90C1
Java
\u90C1
Json
\u90C1
Python
\u90C1
Perl
\x{90C1}
PHP
\x{90C1}
Ruby
\u{90C1}
Rust
\u{90C1}
Go
\u90C1

Web

CSS
\0090C1
HtmlDecimal
郁
HtmlHexadecimal
郁
Url
%E9%83%81

Code

MD5
fcbde55e1b703b8eea12ef30398d347f
Sha1
3a6a5b74471f6a17b3850af5968e9582df8cc8cc
Base64
6YOB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90C1';
console.log(char);  // Output: 郁

Java:

char c = '\u90C1';
System.out.println(c);  // Output: 郁

JSON:

{"text": "\u90C1"}  // Value: 郁

Python:

char = '\u90C1'
print(char)  # Output: 郁

Perl:

my $char = "\x{90C1}";
print $char;  # Output: 郁

PHP:

$char = "\x{90C1}";
echo $char;  // Output: 郁

Ruby:

char = "\u{90C1}"
puts char  # Output: 郁

Rust:

let c = '\u{90C1}';
println!("{}", c);  // Output: 郁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0090C1";  /* Display: 郁 */
}

HTML Decimal:

<p>HTML decimal: &#37057;</p>  <!-- Display: 郁 -->

HTML Hexadecimal:

<p>HTML hex: &#x90C1;</p>  <!-- Display: 郁 -->

URL Encoding:

// 郁 URL encoding
https://unicodefinder.com/search.php?query=%E9%83%81

Encodings

MD5:

fcbde55e1b703b8eea12ef30398d347f

SHA1:

3a6a5b74471f6a17b3850af5968e9582df8cc8cc

Base64:

6YOB