Unicode Finder

"崮" U+5D2E(CJK UNIFIED IDEOGRAPH-5D2E)

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

Programming

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

Web

CSS
\005D2E
HtmlDecimal
崮
HtmlHexadecimal
崮
Url
%E5%B4%AE

Code

MD5
753d0260a830d9d8bd0d91f54388b5da
Sha1
fe046c61ae16012ca81a1655bc2e2a6eb2d842a3
Base64
5bSu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D2E';
console.log(char);  // Output: 崮

Java:

char c = '\u5D2E';
System.out.println(c);  // Output: 崮

JSON:

{"text": "\u5D2E"}  // Value: 崮

Python:

char = '\u5D2E'
print(char)  # Output: 崮

Perl:

my $char = "\x{5D2E}";
print $char;  # Output: 崮

PHP:

$char = "\x{5D2E}";
echo $char;  // Output: 崮

Ruby:

char = "\u{5D2E}"
puts char  # Output: 崮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23854;</p>  <!-- Display: 崮 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D2E;</p>  <!-- Display: 崮 -->

URL Encoding:

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

Encodings

MD5:

753d0260a830d9d8bd0d91f54388b5da

SHA1:

fe046c61ae16012ca81a1655bc2e2a6eb2d842a3

Base64:

5bSu