Unicode Finder

"仄" U+4EC4(CJK UNIFIED IDEOGRAPH-4EC4)

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

Programming

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

Web

CSS
\004EC4
HtmlDecimal
仄
HtmlHexadecimal
仄
Url
%E4%BB%84

Code

MD5
da460e4d6ebf66f7418642f489263431
Sha1
206c1f50076e3f8028a918bb1dd7bef5347fdfa4
Base64
5LuE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC4';
console.log(char);  // Output: 仄

Java:

char c = '\u4EC4';
System.out.println(c);  // Output: 仄

JSON:

{"text": "\u4EC4"}  // Value: 仄

Python:

char = '\u4EC4'
print(char)  # Output: 仄

Perl:

my $char = "\x{4EC4}";
print $char;  # Output: 仄

PHP:

$char = "\x{4EC4}";
echo $char;  // Output: 仄

Ruby:

char = "\u{4EC4}"
puts char  # Output: 仄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20164;</p>  <!-- Display: 仄 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC4;</p>  <!-- Display: 仄 -->

URL Encoding:

// 仄 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%84

Encodings

MD5:

da460e4d6ebf66f7418642f489263431

SHA1:

206c1f50076e3f8028a918bb1dd7bef5347fdfa4

Base64:

5LuE