Unicode Finder

"鄬" U+912C(CJK UNIFIED IDEOGRAPH-912C)

U+912C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-912C

Programming

C
\u912C
JavaScript
\u912C
Java
\u912C
Json
\u912C
Python
\u912C
Perl
\x{912C}
PHP
\x{912C}
Ruby
\u{912C}
Rust
\u{912C}
Go
\u912C

Web

CSS
\00912C
HtmlDecimal
鄬
HtmlHexadecimal
鄬
Url
%E9%84%AC

Code

MD5
cf0a4cfcebdc19cae63be1ce3f58f982
Sha1
3d2a977ee4d83898933068f55e44a341848f2f73
Base64
6YSs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u912C';
console.log(char);  // Output: 鄬

Java:

char c = '\u912C';
System.out.println(c);  // Output: 鄬

JSON:

{"text": "\u912C"}  // Value: 鄬

Python:

char = '\u912C'
print(char)  # Output: 鄬

Perl:

my $char = "\x{912C}";
print $char;  # Output: 鄬

PHP:

$char = "\x{912C}";
echo $char;  // Output: 鄬

Ruby:

char = "\u{912C}"
puts char  # Output: 鄬

Rust:

let c = '\u{912C}';
println!("{}", c);  // Output: 鄬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00912C";  /* Display: 鄬 */
}

HTML Decimal:

<p>HTML decimal: &#37164;</p>  <!-- Display: 鄬 -->

HTML Hexadecimal:

<p>HTML hex: &#x912C;</p>  <!-- Display: 鄬 -->

URL Encoding:

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

Encodings

MD5:

cf0a4cfcebdc19cae63be1ce3f58f982

SHA1:

3d2a977ee4d83898933068f55e44a341848f2f73

Base64:

6YSs