Unicode Finder

"差" U+5DEE(CJK UNIFIED IDEOGRAPH-5DEE)

U+5DEE
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5DEE

Programming

C
\u5DEE
JavaScript
\u5DEE
Java
\u5DEE
Json
\u5DEE
Python
\u5DEE
Perl
\x{5DEE}
PHP
\x{5DEE}
Ruby
\u{5DEE}
Rust
\u{5DEE}
Go
\u5DEE

Web

CSS
\005DEE
HtmlDecimal
差
HtmlHexadecimal
差
Url
%E5%B7%AE

Code

MD5
796a506e5f1b78b496fc6f0d23c974d3
Sha1
ca49e01ddf4344bb7451da320fe46e14369b3874
Base64
5beu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DEE';
console.log(char);  // Output: 差

Java:

char c = '\u5DEE';
System.out.println(c);  // Output: 差

JSON:

{"text": "\u5DEE"}  // Value: 差

Python:

char = '\u5DEE'
print(char)  # Output: 差

Perl:

my $char = "\x{5DEE}";
print $char;  # Output: 差

PHP:

$char = "\x{5DEE}";
echo $char;  // Output: 差

Ruby:

char = "\u{5DEE}"
puts char  # Output: 差

Rust:

let c = '\u{5DEE}';
println!("{}", c);  // Output: 差

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005DEE";  /* Display: 差 */
}

HTML Decimal:

<p>HTML decimal: &#24046;</p>  <!-- Display: 差 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DEE;</p>  <!-- Display: 差 -->

URL Encoding:

// 差 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%AE

Encodings

MD5:

796a506e5f1b78b496fc6f0d23c974d3

SHA1:

ca49e01ddf4344bb7451da320fe46e14369b3874

Base64:

5beu