Unicode Finder

"乜" U+4E5C(CJK UNIFIED IDEOGRAPH-4E5C)

U+4E5C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-4E5C

Programming

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

Web

CSS
\004E5C
HtmlDecimal
乜
HtmlHexadecimal
乜
Url
%E4%B9%9C

Code

MD5
1dca9ac013731730fd4c626a4391b34a
Sha1
58cd9554340670700a97b72e1478ed630ac42b0a
Base64
5Lmc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4E5C';
console.log(char);  // Output: 乜

Java:

char c = '\u4E5C';
System.out.println(c);  // Output: 乜

JSON:

{"text": "\u4E5C"}  // Value: 乜

Python:

char = '\u4E5C'
print(char)  # Output: 乜

Perl:

my $char = "\x{4E5C}";
print $char;  # Output: 乜

PHP:

$char = "\x{4E5C}";
echo $char;  // Output: 乜

Ruby:

char = "\u{4E5C}"
puts char  # Output: 乜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20060;</p>  <!-- Display: 乜 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E5C;</p>  <!-- Display: 乜 -->

URL Encoding:

// 乜 URL encoding
https://unicodefinder.com/search.php?query=%E4%B9%9C

Encodings

MD5:

1dca9ac013731730fd4c626a4391b34a

SHA1:

58cd9554340670700a97b72e1478ed630ac42b0a

Base64:

5Lmc