Unicode Finder

"刿" U+523F(CJK UNIFIED IDEOGRAPH-523F)

U+523F
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-523F

Programming

C
\u523F
JavaScript
\u523F
Java
\u523F
Json
\u523F
Python
\u523F
Perl
\x{523F}
PHP
\x{523F}
Ruby
\u{523F}
Rust
\u{523F}
Go
\u523F

Web

CSS
\00523F
HtmlDecimal
刿
HtmlHexadecimal
刿
Url
%E5%88%BF

Code

MD5
7c321657e14661b3b64cb528efb88b05
Sha1
a4152f588df3d7177ec500095e15c047cae0a8aa
Base64
5Yi/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u523F';
console.log(char);  // Output: 刿

Java:

char c = '\u523F';
System.out.println(c);  // Output: 刿

JSON:

{"text": "\u523F"}  // Value: 刿

Python:

char = '\u523F'
print(char)  # Output: 刿

Perl:

my $char = "\x{523F}";
print $char;  # Output: 刿

PHP:

$char = "\x{523F}";
echo $char;  // Output: 刿

Ruby:

char = "\u{523F}"
puts char  # Output: 刿

Rust:

let c = '\u{523F}';
println!("{}", c);  // Output: 刿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00523F";  /* Display: 刿 */
}

HTML Decimal:

<p>HTML decimal: &#21055;</p>  <!-- Display: 刿 -->

HTML Hexadecimal:

<p>HTML hex: &#x523F;</p>  <!-- Display: 刿 -->

URL Encoding:

// 刿 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%BF

Encodings

MD5:

7c321657e14661b3b64cb528efb88b05

SHA1:

a4152f588df3d7177ec500095e15c047cae0a8aa

Base64:

5Yi/