Unicode Finder

"糞" U+7CDE(CJK UNIFIED IDEOGRAPH-7CDE)

U+7CDE
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7CDE

Programming

C
\u7CDE
JavaScript
\u7CDE
Java
\u7CDE
Json
\u7CDE
Python
\u7CDE
Perl
\x{7CDE}
PHP
\x{7CDE}
Ruby
\u{7CDE}
Rust
\u{7CDE}
Go
\u7CDE

Web

CSS
\007CDE
HtmlDecimal
糞
HtmlHexadecimal
糞
Url
%E7%B3%9E

Code

MD5
1fd69e091e218e19639af0cf1dd069cc
Sha1
a320bd72d0a8db36342c0037fcc72748fc74c6b0
Base64
57Oe

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CDE';
console.log(char);  // Output: 糞

Java:

char c = '\u7CDE';
System.out.println(c);  // Output: 糞

JSON:

{"text": "\u7CDE"}  // Value: 糞

Python:

char = '\u7CDE'
print(char)  # Output: 糞

Perl:

my $char = "\x{7CDE}";
print $char;  # Output: 糞

PHP:

$char = "\x{7CDE}";
echo $char;  // Output: 糞

Ruby:

char = "\u{7CDE}"
puts char  # Output: 糞

Rust:

let c = '\u{7CDE}';
println!("{}", c);  // Output: 糞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007CDE";  /* Display: 糞 */
}

HTML Decimal:

<p>HTML decimal: &#31966;</p>  <!-- Display: 糞 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CDE;</p>  <!-- Display: 糞 -->

URL Encoding:

// 糞 URL encoding
https://unicodefinder.com/search.php?query=%E7%B3%9E

Encodings

MD5:

1fd69e091e218e19639af0cf1dd069cc

SHA1:

a320bd72d0a8db36342c0037fcc72748fc74c6b0

Base64:

57Oe