Unicode Finder

"壐" U+58D0(CJK UNIFIED IDEOGRAPH-58D0)

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

Programming

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

Web

CSS
\0058D0
HtmlDecimal
壐
HtmlHexadecimal
壐
Url
%E5%A3%90

Code

MD5
dbce7ffbf061d3b2d8688c6f105181d1
Sha1
fdcc49b9ebf6364c72c96a83e544e5d07db26642
Base64
5aOQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58D0';
console.log(char);  // Output: 壐

Java:

char c = '\u58D0';
System.out.println(c);  // Output: 壐

JSON:

{"text": "\u58D0"}  // Value: 壐

Python:

char = '\u58D0'
print(char)  # Output: 壐

Perl:

my $char = "\x{58D0}";
print $char;  # Output: 壐

PHP:

$char = "\x{58D0}";
echo $char;  // Output: 壐

Ruby:

char = "\u{58D0}"
puts char  # Output: 壐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22736;</p>  <!-- Display: 壐 -->

HTML Hexadecimal:

<p>HTML hex: &#x58D0;</p>  <!-- Display: 壐 -->

URL Encoding:

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

Encodings

MD5:

dbce7ffbf061d3b2d8688c6f105181d1

SHA1:

fdcc49b9ebf6364c72c96a83e544e5d07db26642

Base64:

5aOQ