Unicode Finder

"乳" U+4E73(CJK UNIFIED IDEOGRAPH-4E73)

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

Programming

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

Web

CSS
\004E73
HtmlDecimal
乳
HtmlHexadecimal
乳
Url
%E4%B9%B3

Code

MD5
03908404723787ea049ce479b8f2b8ce
Sha1
c3af606ceb70fae4a571198910704b966ebf5150
Base64
5Lmz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4E73';
console.log(char);  // Output: 乳

Java:

char c = '\u4E73';
System.out.println(c);  // Output: 乳

JSON:

{"text": "\u4E73"}  // Value: 乳

Python:

char = '\u4E73'
print(char)  # Output: 乳

Perl:

my $char = "\x{4E73}";
print $char;  # Output: 乳

PHP:

$char = "\x{4E73}";
echo $char;  // Output: 乳

Ruby:

char = "\u{4E73}"
puts char  # Output: 乳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20083;</p>  <!-- Display: 乳 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E73;</p>  <!-- Display: 乳 -->

URL Encoding:

// 乳 URL encoding
https://unicodefinder.com/search.php?query=%E4%B9%B3

Encodings

MD5:

03908404723787ea049ce479b8f2b8ce

SHA1:

c3af606ceb70fae4a571198910704b966ebf5150

Base64:

5Lmz