Unicode Finder

"僇" U+50C7(CJK UNIFIED IDEOGRAPH-50C7)

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

Programming

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

Web

CSS
\0050C7
HtmlDecimal
僇
HtmlHexadecimal
僇
Url
%E5%83%87

Code

MD5
aed798d5330bd24b4982aa2ff6958654
Sha1
acaef2afbfb3456b5cf7c6ec6e66351c8e1dd2e2
Base64
5YOH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50C7';
console.log(char);  // Output: 僇

Java:

char c = '\u50C7';
System.out.println(c);  // Output: 僇

JSON:

{"text": "\u50C7"}  // Value: 僇

Python:

char = '\u50C7'
print(char)  # Output: 僇

Perl:

my $char = "\x{50C7}";
print $char;  # Output: 僇

PHP:

$char = "\x{50C7}";
echo $char;  // Output: 僇

Ruby:

char = "\u{50C7}"
puts char  # Output: 僇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20679;</p>  <!-- Display: 僇 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C7;</p>  <!-- Display: 僇 -->

URL Encoding:

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

Encodings

MD5:

aed798d5330bd24b4982aa2ff6958654

SHA1:

acaef2afbfb3456b5cf7c6ec6e66351c8e1dd2e2

Base64:

5YOH