Unicode Finder

"乧" U+4E67(CJK UNIFIED IDEOGRAPH-4E67)

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

Programming

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

Web

CSS
\004E67
HtmlDecimal
乧
HtmlHexadecimal
乧
Url
%E4%B9%A7

Code

MD5
d638f0dc087d1e5d5c5a5916cdf20105
Sha1
e512c0a540eff2fc92182d98031e97be54b6c700
Base64
5Lmn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4E67';
console.log(char);  // Output: 乧

Java:

char c = '\u4E67';
System.out.println(c);  // Output: 乧

JSON:

{"text": "\u4E67"}  // Value: 乧

Python:

char = '\u4E67'
print(char)  # Output: 乧

Perl:

my $char = "\x{4E67}";
print $char;  # Output: 乧

PHP:

$char = "\x{4E67}";
echo $char;  // Output: 乧

Ruby:

char = "\u{4E67}"
puts char  # Output: 乧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20071;</p>  <!-- Display: 乧 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E67;</p>  <!-- Display: 乧 -->

URL Encoding:

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

Encodings

MD5:

d638f0dc087d1e5d5c5a5916cdf20105

SHA1:

e512c0a540eff2fc92182d98031e97be54b6c700

Base64:

5Lmn