Unicode Finder

"堤" U+5824(CJK UNIFIED IDEOGRAPH-5824)

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

Programming

C
\u5824
JavaScript
\u5824
Java
\u5824
Json
\u5824
Python
\u5824
Perl
\x{5824}
PHP
\x{5824}
Ruby
\u{5824}
Rust
\u{5824}
Go
\u5824

Web

CSS
\005824
HtmlDecimal
堤
HtmlHexadecimal
堤
Url
%E5%A0%A4

Code

MD5
1128c5d6537815ef5a989abff92b47d0
Sha1
b5a414f74f61278bdd0c031603b3c83dca01f854
Base64
5aCk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5824';
console.log(char);  // Output: 堤

Java:

char c = '\u5824';
System.out.println(c);  // Output: 堤

JSON:

{"text": "\u5824"}  // Value: 堤

Python:

char = '\u5824'
print(char)  # Output: 堤

Perl:

my $char = "\x{5824}";
print $char;  # Output: 堤

PHP:

$char = "\x{5824}";
echo $char;  // Output: 堤

Ruby:

char = "\u{5824}"
puts char  # Output: 堤

Rust:

let c = '\u{5824}';
println!("{}", c);  // Output: 堤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005824";  /* Display: 堤 */
}

HTML Decimal:

<p>HTML decimal: &#22564;</p>  <!-- Display: 堤 -->

HTML Hexadecimal:

<p>HTML hex: &#x5824;</p>  <!-- Display: 堤 -->

URL Encoding:

// 堤 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%A4

Encodings

MD5:

1128c5d6537815ef5a989abff92b47d0

SHA1:

b5a414f74f61278bdd0c031603b3c83dca01f854

Base64:

5aCk