Unicode Finder

"壊" U+58CA(CJK UNIFIED IDEOGRAPH-58CA)

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

Programming

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

Web

CSS
\0058CA
HtmlDecimal
壊
HtmlHexadecimal
壊
Url
%E5%A3%8A

Code

MD5
d52d4a757838688cedb2507ff0cb4f79
Sha1
ed455d5e0d3ec2237dd9b3bf2d0e5af211aa6958
Base64
5aOK

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58CA';
console.log(char);  // Output: 壊

Java:

char c = '\u58CA';
System.out.println(c);  // Output: 壊

JSON:

{"text": "\u58CA"}  // Value: 壊

Python:

char = '\u58CA'
print(char)  # Output: 壊

Perl:

my $char = "\x{58CA}";
print $char;  # Output: 壊

PHP:

$char = "\x{58CA}";
echo $char;  // Output: 壊

Ruby:

char = "\u{58CA}"
puts char  # Output: 壊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22730;</p>  <!-- Display: 壊 -->

HTML Hexadecimal:

<p>HTML hex: &#x58CA;</p>  <!-- Display: 壊 -->

URL Encoding:

// 壊 URL encoding
https://unicodefinder.com/search.php?query=%E5%A3%8A

Encodings

MD5:

d52d4a757838688cedb2507ff0cb4f79

SHA1:

ed455d5e0d3ec2237dd9b3bf2d0e5af211aa6958

Base64:

5aOK