Unicode Finder

"仝" U+4EDD(CJK UNIFIED IDEOGRAPH-4EDD)

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

Programming

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

Web

CSS
\004EDD
HtmlDecimal
仝
HtmlHexadecimal
仝
Url
%E4%BB%9D

Code

MD5
ae232b92fbdc02b21596f3b94d0495b0
Sha1
70ab7ef8eb03de17a88141a82e9c0f1fc168d046
Base64
5Lud

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EDD';
console.log(char);  // Output: 仝

Java:

char c = '\u4EDD';
System.out.println(c);  // Output: 仝

JSON:

{"text": "\u4EDD"}  // Value: 仝

Python:

char = '\u4EDD'
print(char)  # Output: 仝

Perl:

my $char = "\x{4EDD}";
print $char;  # Output: 仝

PHP:

$char = "\x{4EDD}";
echo $char;  // Output: 仝

Ruby:

char = "\u{4EDD}"
puts char  # Output: 仝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20189;</p>  <!-- Display: 仝 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EDD;</p>  <!-- Display: 仝 -->

URL Encoding:

// 仝 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%9D

Encodings

MD5:

ae232b92fbdc02b21596f3b94d0495b0

SHA1:

70ab7ef8eb03de17a88141a82e9c0f1fc168d046

Base64:

5Lud