Unicode Finder

"邬" U+90AC(CJK UNIFIED IDEOGRAPH-90AC)

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

Programming

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

Web

CSS
\0090AC
HtmlDecimal
邬
HtmlHexadecimal
邬
Url
%E9%82%AC

Code

MD5
5301368a1cfa0979c9b730411dc088fa
Sha1
31c743afaa4e803878b0c69cac4dd4a4a1845854
Base64
6YKs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90AC';
console.log(char);  // Output: 邬

Java:

char c = '\u90AC';
System.out.println(c);  // Output: 邬

JSON:

{"text": "\u90AC"}  // Value: 邬

Python:

char = '\u90AC'
print(char)  # Output: 邬

Perl:

my $char = "\x{90AC}";
print $char;  # Output: 邬

PHP:

$char = "\x{90AC}";
echo $char;  // Output: 邬

Ruby:

char = "\u{90AC}"
puts char  # Output: 邬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37036;</p>  <!-- Display: 邬 -->

HTML Hexadecimal:

<p>HTML hex: &#x90AC;</p>  <!-- Display: 邬 -->

URL Encoding:

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

Encodings

MD5:

5301368a1cfa0979c9b730411dc088fa

SHA1:

31c743afaa4e803878b0c69cac4dd4a4a1845854

Base64:

6YKs