Unicode Finder

"壄" U+58C4(CJK UNIFIED IDEOGRAPH-58C4)

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

Programming

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

Web

CSS
\0058C4
HtmlDecimal
壄
HtmlHexadecimal
壄
Url
%E5%A3%84

Code

MD5
a801d34c1bc0eaf43935ff6f59a8353a
Sha1
bda58ca670a82e5ba0e03dcb959e6f614d854ec7
Base64
5aOE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58C4';
console.log(char);  // Output: 壄

Java:

char c = '\u58C4';
System.out.println(c);  // Output: 壄

JSON:

{"text": "\u58C4"}  // Value: 壄

Python:

char = '\u58C4'
print(char)  # Output: 壄

Perl:

my $char = "\x{58C4}";
print $char;  # Output: 壄

PHP:

$char = "\x{58C4}";
echo $char;  // Output: 壄

Ruby:

char = "\u{58C4}"
puts char  # Output: 壄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22724;</p>  <!-- Display: 壄 -->

HTML Hexadecimal:

<p>HTML hex: &#x58C4;</p>  <!-- Display: 壄 -->

URL Encoding:

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

Encodings

MD5:

a801d34c1bc0eaf43935ff6f59a8353a

SHA1:

bda58ca670a82e5ba0e03dcb959e6f614d854ec7

Base64:

5aOE