Unicode Finder

"僂" U+50C2(CJK UNIFIED IDEOGRAPH-50C2)

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

Programming

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

Web

CSS
\0050C2
HtmlDecimal
僂
HtmlHexadecimal
僂
Url
%E5%83%82

Code

MD5
1c51913994eba047d49e43ef6d3407a9
Sha1
5b29478eb0f1cfc78029eb1bef6383bf7f826d6f
Base64
5YOC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50C2';
console.log(char);  // Output: 僂

Java:

char c = '\u50C2';
System.out.println(c);  // Output: 僂

JSON:

{"text": "\u50C2"}  // Value: 僂

Python:

char = '\u50C2'
print(char)  # Output: 僂

Perl:

my $char = "\x{50C2}";
print $char;  # Output: 僂

PHP:

$char = "\x{50C2}";
echo $char;  // Output: 僂

Ruby:

char = "\u{50C2}"
puts char  # Output: 僂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20674;</p>  <!-- Display: 僂 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C2;</p>  <!-- Display: 僂 -->

URL Encoding:

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

Encodings

MD5:

1c51913994eba047d49e43ef6d3407a9

SHA1:

5b29478eb0f1cfc78029eb1bef6383bf7f826d6f

Base64:

5YOC