Unicode Finder

"巢" U+5DE2(CJK UNIFIED IDEOGRAPH-5DE2)

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

Programming

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

Web

CSS
\005DE2
HtmlDecimal
巢
HtmlHexadecimal
巢
Url
%E5%B7%A2

Code

MD5
5aeb10b94edc1b8c352cde9c398d351a
Sha1
3a4da9717470bcc4b839653675420bdacf9fac9e
Base64
5bei

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DE2';
console.log(char);  // Output: 巢

Java:

char c = '\u5DE2';
System.out.println(c);  // Output: 巢

JSON:

{"text": "\u5DE2"}  // Value: 巢

Python:

char = '\u5DE2'
print(char)  # Output: 巢

Perl:

my $char = "\x{5DE2}";
print $char;  # Output: 巢

PHP:

$char = "\x{5DE2}";
echo $char;  // Output: 巢

Ruby:

char = "\u{5DE2}"
puts char  # Output: 巢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24034;</p>  <!-- Display: 巢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DE2;</p>  <!-- Display: 巢 -->

URL Encoding:

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

Encodings

MD5:

5aeb10b94edc1b8c352cde9c398d351a

SHA1:

3a4da9717470bcc4b839653675420bdacf9fac9e

Base64:

5bei