Unicode Finder

"丩" U+4E29(CJK UNIFIED IDEOGRAPH-4E29)

U+4E29
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-4E29

Programming

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

Web

CSS
\004E29
HtmlDecimal
丩
HtmlHexadecimal
丩
Url
%E4%B8%A9

Code

MD5
56fae64948ebd188876d4691d5a27565
Sha1
21eadf68b6e85f54b1aa9828ae0fd3f0a4fe57be
Base64
5Lip

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4E29';
console.log(char);  // Output: 丩

Java:

char c = '\u4E29';
System.out.println(c);  // Output: 丩

JSON:

{"text": "\u4E29"}  // Value: 丩

Python:

char = '\u4E29'
print(char)  # Output: 丩

Perl:

my $char = "\x{4E29}";
print $char;  # Output: 丩

PHP:

$char = "\x{4E29}";
echo $char;  // Output: 丩

Ruby:

char = "\u{4E29}"
puts char  # Output: 丩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20009;</p>  <!-- Display: 丩 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E29;</p>  <!-- Display: 丩 -->

URL Encoding:

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

Encodings

MD5:

56fae64948ebd188876d4691d5a27565

SHA1:

21eadf68b6e85f54b1aa9828ae0fd3f0a4fe57be

Base64:

5Lip