Unicode Finder

"郯" U+90EF(CJK UNIFIED IDEOGRAPH-90EF)

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

Programming

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

Web

CSS
\0090EF
HtmlDecimal
郯
HtmlHexadecimal
郯
Url
%E9%83%AF

Code

MD5
42f98e6643470a219435b2c082937fda
Sha1
f424d509fed4b610fbd4985eca4e39489d5e7b16
Base64
6YOv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90EF';
console.log(char);  // Output: 郯

Java:

char c = '\u90EF';
System.out.println(c);  // Output: 郯

JSON:

{"text": "\u90EF"}  // Value: 郯

Python:

char = '\u90EF'
print(char)  # Output: 郯

Perl:

my $char = "\x{90EF}";
print $char;  # Output: 郯

PHP:

$char = "\x{90EF}";
echo $char;  // Output: 郯

Ruby:

char = "\u{90EF}"
puts char  # Output: 郯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37103;</p>  <!-- Display: 郯 -->

HTML Hexadecimal:

<p>HTML hex: &#x90EF;</p>  <!-- Display: 郯 -->

URL Encoding:

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

Encodings

MD5:

42f98e6643470a219435b2c082937fda

SHA1:

f424d509fed4b610fbd4985eca4e39489d5e7b16

Base64:

6YOv