Unicode Finder

"圹" U+5739(CJK UNIFIED IDEOGRAPH-5739)

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

Programming

C
\u5739
JavaScript
\u5739
Java
\u5739
Json
\u5739
Python
\u5739
Perl
\x{5739}
PHP
\x{5739}
Ruby
\u{5739}
Rust
\u{5739}
Go
\u5739

Web

CSS
\005739
HtmlDecimal
圹
HtmlHexadecimal
圹
Url
%E5%9C%B9

Code

MD5
9f14dfc550397a73b60dae4549e8226e
Sha1
c862ac58623189490ed826c0fb77ca4428e50c83
Base64
5Zy5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5739';
console.log(char);  // Output: 圹

Java:

char c = '\u5739';
System.out.println(c);  // Output: 圹

JSON:

{"text": "\u5739"}  // Value: 圹

Python:

char = '\u5739'
print(char)  # Output: 圹

Perl:

my $char = "\x{5739}";
print $char;  # Output: 圹

PHP:

$char = "\x{5739}";
echo $char;  // Output: 圹

Ruby:

char = "\u{5739}"
puts char  # Output: 圹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005739";  /* Display: 圹 */
}

HTML Decimal:

<p>HTML decimal: &#22329;</p>  <!-- Display: 圹 -->

HTML Hexadecimal:

<p>HTML hex: &#x5739;</p>  <!-- Display: 圹 -->

URL Encoding:

// 圹 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%B9

Encodings

MD5:

9f14dfc550397a73b60dae4549e8226e

SHA1:

c862ac58623189490ed826c0fb77ca4428e50c83

Base64:

5Zy5