Unicode Finder

"像" U+50CF(CJK UNIFIED IDEOGRAPH-50CF)

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

Programming

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

Web

CSS
\0050CF
HtmlDecimal
像
HtmlHexadecimal
像
Url
%E5%83%8F

Code

MD5
2774eb215f6ec5861748038595369eb0
Sha1
344bc5902c13619b979849cf861e533972bca99c
Base64
5YOP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50CF';
console.log(char);  // Output: 像

Java:

char c = '\u50CF';
System.out.println(c);  // Output: 像

JSON:

{"text": "\u50CF"}  // Value: 像

Python:

char = '\u50CF'
print(char)  # Output: 像

Perl:

my $char = "\x{50CF}";
print $char;  # Output: 像

PHP:

$char = "\x{50CF}";
echo $char;  // Output: 像

Ruby:

char = "\u{50CF}"
puts char  # Output: 像

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20687;</p>  <!-- Display: 像 -->

HTML Hexadecimal:

<p>HTML hex: &#x50CF;</p>  <!-- Display: 像 -->

URL Encoding:

// 像 URL encoding
https://unicodefinder.com/search.php?query=%E5%83%8F

Encodings

MD5:

2774eb215f6ec5861748038595369eb0

SHA1:

344bc5902c13619b979849cf861e533972bca99c

Base64:

5YOP