Unicode Finder

"峝" U+5CDD(CJK UNIFIED IDEOGRAPH-5CDD)

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

Programming

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

Web

CSS
\005CDD
HtmlDecimal
峝
HtmlHexadecimal
峝
Url
%E5%B3%9D

Code

MD5
0b74167b94c5116899103468f6cf914c
Sha1
8a26d969160cd51d20b4245c52a2dfdba0416d67
Base64
5bOd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CDD';
console.log(char);  // Output: 峝

Java:

char c = '\u5CDD';
System.out.println(c);  // Output: 峝

JSON:

{"text": "\u5CDD"}  // Value: 峝

Python:

char = '\u5CDD'
print(char)  # Output: 峝

Perl:

my $char = "\x{5CDD}";
print $char;  # Output: 峝

PHP:

$char = "\x{5CDD}";
echo $char;  // Output: 峝

Ruby:

char = "\u{5CDD}"
puts char  # Output: 峝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23773;</p>  <!-- Display: 峝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CDD;</p>  <!-- Display: 峝 -->

URL Encoding:

// 峝 URL encoding
https://unicodefinder.com/search.php?query=%E5%B3%9D

Encodings

MD5:

0b74167b94c5116899103468f6cf914c

SHA1:

8a26d969160cd51d20b4245c52a2dfdba0416d67

Base64:

5bOd