Unicode Finder

"邪" U+90AA(CJK UNIFIED IDEOGRAPH-90AA)

U+90AA
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-90AA

Programming

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

Web

CSS
\0090AA
HtmlDecimal
邪
HtmlHexadecimal
邪
Url
%E9%82%AA

Code

MD5
c01ba2a5c9678f5df9e562700d6d0b99
Sha1
44ec158cf595340751c39f63d15a254364e02265
Base64
6YKq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90AA';
console.log(char);  // Output: 邪

Java:

char c = '\u90AA';
System.out.println(c);  // Output: 邪

JSON:

{"text": "\u90AA"}  // Value: 邪

Python:

char = '\u90AA'
print(char)  # Output: 邪

Perl:

my $char = "\x{90AA}";
print $char;  # Output: 邪

PHP:

$char = "\x{90AA}";
echo $char;  // Output: 邪

Ruby:

char = "\u{90AA}"
puts char  # Output: 邪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37034;</p>  <!-- Display: 邪 -->

HTML Hexadecimal:

<p>HTML hex: &#x90AA;</p>  <!-- Display: 邪 -->

URL Encoding:

// 邪 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%AA

Encodings

MD5:

c01ba2a5c9678f5df9e562700d6d0b99

SHA1:

44ec158cf595340751c39f63d15a254364e02265

Base64:

6YKq