Unicode Finder

"仏" U+4ECF(CJK UNIFIED IDEOGRAPH-4ECF)

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

Programming

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

Web

CSS
\004ECF
HtmlDecimal
仏
HtmlHexadecimal
仏
Url
%E4%BB%8F

Code

MD5
eac6cf74f47f20f84c8b5678150ea4a5
Sha1
d4c284baad9f6a290a75468a2e9a3fdde72f6e4a
Base64
5LuP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4ECF';
console.log(char);  // Output: 仏

Java:

char c = '\u4ECF';
System.out.println(c);  // Output: 仏

JSON:

{"text": "\u4ECF"}  // Value: 仏

Python:

char = '\u4ECF'
print(char)  # Output: 仏

Perl:

my $char = "\x{4ECF}";
print $char;  # Output: 仏

PHP:

$char = "\x{4ECF}";
echo $char;  // Output: 仏

Ruby:

char = "\u{4ECF}"
puts char  # Output: 仏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20175;</p>  <!-- Display: 仏 -->

HTML Hexadecimal:

<p>HTML hex: &#x4ECF;</p>  <!-- Display: 仏 -->

URL Encoding:

// 仏 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%8F

Encodings

MD5:

eac6cf74f47f20f84c8b5678150ea4a5

SHA1:

d4c284baad9f6a290a75468a2e9a3fdde72f6e4a

Base64:

5LuP