Unicode Finder

"巴" U+5DF4(CJK UNIFIED IDEOGRAPH-5DF4)

U+5DF4
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5DF4

Programming

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

Web

CSS
\005DF4
HtmlDecimal
巴
HtmlHexadecimal
巴
Url
%E5%B7%B4

Code

MD5
8f046140b841600c2ef8164ac66ace98
Sha1
dc2266e85f7294015b28928cef8fcd62a12eaf84
Base64
5be0

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF4';
console.log(char);  // Output: 巴

Java:

char c = '\u5DF4';
System.out.println(c);  // Output: 巴

JSON:

{"text": "\u5DF4"}  // Value: 巴

Python:

char = '\u5DF4'
print(char)  # Output: 巴

Perl:

my $char = "\x{5DF4}";
print $char;  # Output: 巴

PHP:

$char = "\x{5DF4}";
echo $char;  // Output: 巴

Ruby:

char = "\u{5DF4}"
puts char  # Output: 巴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24052;</p>  <!-- Display: 巴 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF4;</p>  <!-- Display: 巴 -->

URL Encoding:

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

Encodings

MD5:

8f046140b841600c2ef8164ac66ace98

SHA1:

dc2266e85f7294015b28928cef8fcd62a12eaf84

Base64:

5be0