Unicode Finder

"巵" U+5DF5(CJK UNIFIED IDEOGRAPH-5DF5)

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

Programming

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

Web

CSS
\005DF5
HtmlDecimal
巵
HtmlHexadecimal
巵
Url
%E5%B7%B5

Code

MD5
2ce929545fcbe058574c3378270444e0
Sha1
52d1b4b32ce2155b6ef6754680d67e2d2b4c0d2e
Base64
5be1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF5';
console.log(char);  // Output: 巵

Java:

char c = '\u5DF5';
System.out.println(c);  // Output: 巵

JSON:

{"text": "\u5DF5"}  // Value: 巵

Python:

char = '\u5DF5'
print(char)  # Output: 巵

Perl:

my $char = "\x{5DF5}";
print $char;  # Output: 巵

PHP:

$char = "\x{5DF5}";
echo $char;  // Output: 巵

Ruby:

char = "\u{5DF5}"
puts char  # Output: 巵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24053;</p>  <!-- Display: 巵 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF5;</p>  <!-- Display: 巵 -->

URL Encoding:

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

Encodings

MD5:

2ce929545fcbe058574c3378270444e0

SHA1:

52d1b4b32ce2155b6ef6754680d67e2d2b4c0d2e

Base64:

5be1