Unicode Finder

"僁" U+50C1(CJK UNIFIED IDEOGRAPH-50C1)

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

Programming

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

Web

CSS
\0050C1
HtmlDecimal
僁
HtmlHexadecimal
僁
Url
%E5%83%81

Code

MD5
59cadd5bc3ddd180bbe0dc2fae35276f
Sha1
20db48f27e07767e4bbadb52a34b58ddffdba9e7
Base64
5YOB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50C1';
console.log(char);  // Output: 僁

Java:

char c = '\u50C1';
System.out.println(c);  // Output: 僁

JSON:

{"text": "\u50C1"}  // Value: 僁

Python:

char = '\u50C1'
print(char)  # Output: 僁

Perl:

my $char = "\x{50C1}";
print $char;  # Output: 僁

PHP:

$char = "\x{50C1}";
echo $char;  // Output: 僁

Ruby:

char = "\u{50C1}"
puts char  # Output: 僁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20673;</p>  <!-- Display: 僁 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C1;</p>  <!-- Display: 僁 -->

URL Encoding:

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

Encodings

MD5:

59cadd5bc3ddd180bbe0dc2fae35276f

SHA1:

20db48f27e07767e4bbadb52a34b58ddffdba9e7

Base64:

5YOB