Unicode Finder

"邡" U+90A1(CJK UNIFIED IDEOGRAPH-90A1)

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

Programming

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

Web

CSS
\0090A1
HtmlDecimal
邡
HtmlHexadecimal
邡
Url
%E9%82%A1

Code

MD5
fb4ce370d1cfd964fe744f183495a471
Sha1
709cc752b423d0423d359a76ea0a6f368c0b99c1
Base64
6YKh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90A1';
console.log(char);  // Output: 邡

Java:

char c = '\u90A1';
System.out.println(c);  // Output: 邡

JSON:

{"text": "\u90A1"}  // Value: 邡

Python:

char = '\u90A1'
print(char)  # Output: 邡

Perl:

my $char = "\x{90A1}";
print $char;  # Output: 邡

PHP:

$char = "\x{90A1}";
echo $char;  // Output: 邡

Ruby:

char = "\u{90A1}"
puts char  # Output: 邡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37025;</p>  <!-- Display: 邡 -->

HTML Hexadecimal:

<p>HTML hex: &#x90A1;</p>  <!-- Display: 邡 -->

URL Encoding:

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

Encodings

MD5:

fb4ce370d1cfd964fe744f183495a471

SHA1:

709cc752b423d0423d359a76ea0a6f368c0b99c1

Base64:

6YKh