Unicode Finder

"壇" U+58C7(CJK UNIFIED IDEOGRAPH-58C7)

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

Programming

C
\u58C7
JavaScript
\u58C7
Java
\u58C7
Json
\u58C7
Python
\u58C7
Perl
\x{58C7}
PHP
\x{58C7}
Ruby
\u{58C7}
Rust
\u{58C7}
Go
\u58C7

Web

CSS
\0058C7
HtmlDecimal
壇
HtmlHexadecimal
壇
Url
%E5%A3%87

Code

MD5
09e8b1890311c298877b1387c7a4144d
Sha1
1704bac53489bfbec60f912165483b5e28968174
Base64
5aOH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58C7';
console.log(char);  // Output: 壇

Java:

char c = '\u58C7';
System.out.println(c);  // Output: 壇

JSON:

{"text": "\u58C7"}  // Value: 壇

Python:

char = '\u58C7'
print(char)  # Output: 壇

Perl:

my $char = "\x{58C7}";
print $char;  # Output: 壇

PHP:

$char = "\x{58C7}";
echo $char;  // Output: 壇

Ruby:

char = "\u{58C7}"
puts char  # Output: 壇

Rust:

let c = '\u{58C7}';
println!("{}", c);  // Output: 壇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0058C7";  /* Display: 壇 */
}

HTML Decimal:

<p>HTML decimal: &#22727;</p>  <!-- Display: 壇 -->

HTML Hexadecimal:

<p>HTML hex: &#x58C7;</p>  <!-- Display: 壇 -->

URL Encoding:

// 壇 URL encoding
https://unicodefinder.com/search.php?query=%E5%A3%87

Encodings

MD5:

09e8b1890311c298877b1387c7a4144d

SHA1:

1704bac53489bfbec60f912165483b5e28968174

Base64:

5aOH