Unicode Finder

"壁" U+58C1(CJK UNIFIED IDEOGRAPH-58C1)

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

Programming

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

Web

CSS
\0058C1
HtmlDecimal
壁
HtmlHexadecimal
壁
Url
%E5%A3%81

Code

MD5
767d8cd96ac8f2de37719194fa8ab9b4
Sha1
713ea93e35dbef0098b967ffe7b48c6970a8de70
Base64
5aOB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58C1';
console.log(char);  // Output: 壁

Java:

char c = '\u58C1';
System.out.println(c);  // Output: 壁

JSON:

{"text": "\u58C1"}  // Value: 壁

Python:

char = '\u58C1'
print(char)  # Output: 壁

Perl:

my $char = "\x{58C1}";
print $char;  # Output: 壁

PHP:

$char = "\x{58C1}";
echo $char;  // Output: 壁

Ruby:

char = "\u{58C1}"
puts char  # Output: 壁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22721;</p>  <!-- Display: 壁 -->

HTML Hexadecimal:

<p>HTML hex: &#x58C1;</p>  <!-- Display: 壁 -->

URL Encoding:

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

Encodings

MD5:

767d8cd96ac8f2de37719194fa8ab9b4

SHA1:

713ea93e35dbef0098b967ffe7b48c6970a8de70

Base64:

5aOB