Unicode Finder

"丬" U+4E2C(CJK UNIFIED IDEOGRAPH-4E2C)

U+4E2C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4E2C

Programming

C
\u4E2C
JavaScript
\u4E2C
Java
\u4E2C
Json
\u4E2C
Python
\u4E2C
Perl
\x{4E2C}
PHP
\x{4E2C}
Ruby
\u{4E2C}
Rust
\u{4E2C}
Go
\u4E2C

Web

CSS
\004E2C
HtmlDecimal
丬
HtmlHexadecimal
丬
Url
%E4%B8%AC

Code

MD5
85bbf79a233c4633e1deb454c334d6ff
Sha1
5fce47bf8e3c79727eda11abd64083d3c2af7415
Base64
5Lis

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E2C';
console.log(char);  // Output: 丬

Java:

char c = '\u4E2C';
System.out.println(c);  // Output: 丬

JSON:

{"text": "\u4E2C"}  // Value: 丬

Python:

char = '\u4E2C'
print(char)  # Output: 丬

Perl:

my $char = "\x{4E2C}";
print $char;  # Output: 丬

PHP:

$char = "\x{4E2C}";
echo $char;  // Output: 丬

Ruby:

char = "\u{4E2C}"
puts char  # Output: 丬

Rust:

let c = '\u{4E2C}';
println!("{}", c);  // Output: 丬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004E2C";  /* Display: 丬 */
}

HTML Decimal:

<p>HTML decimal: &#20012;</p>  <!-- Display: 丬 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E2C;</p>  <!-- Display: 丬 -->

URL Encoding:

// 丬 URL encoding
https://unicodefinder.com/search.php?query=%E4%B8%AC

Encodings

MD5:

85bbf79a233c4633e1deb454c334d6ff

SHA1:

5fce47bf8e3c79727eda11abd64083d3c2af7415

Base64:

5Lis