Unicode Finder

"堩" U+5829(CJK UNIFIED IDEOGRAPH-5829)

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

Programming

C
\u5829
JavaScript
\u5829
Java
\u5829
Json
\u5829
Python
\u5829
Perl
\x{5829}
PHP
\x{5829}
Ruby
\u{5829}
Rust
\u{5829}
Go
\u5829

Web

CSS
\005829
HtmlDecimal
堩
HtmlHexadecimal
堩
Url
%E5%A0%A9

Code

MD5
17003b078060988fdfb20d6e960ccc3b
Sha1
9078cc6cfb64fc6372b22c6a8e2e1bb6d14a1318
Base64
5aCp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5829';
console.log(char);  // Output: 堩

Java:

char c = '\u5829';
System.out.println(c);  // Output: 堩

JSON:

{"text": "\u5829"}  // Value: 堩

Python:

char = '\u5829'
print(char)  # Output: 堩

Perl:

my $char = "\x{5829}";
print $char;  # Output: 堩

PHP:

$char = "\x{5829}";
echo $char;  // Output: 堩

Ruby:

char = "\u{5829}"
puts char  # Output: 堩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005829";  /* Display: 堩 */
}

HTML Decimal:

<p>HTML decimal: &#22569;</p>  <!-- Display: 堩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5829;</p>  <!-- Display: 堩 -->

URL Encoding:

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

Encodings

MD5:

17003b078060988fdfb20d6e960ccc3b

SHA1:

9078cc6cfb64fc6372b22c6a8e2e1bb6d14a1318

Base64:

5aCp