Unicode Finder

"僅" U+50C5(CJK UNIFIED IDEOGRAPH-50C5)

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

Programming

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

Web

CSS
\0050C5
HtmlDecimal
僅
HtmlHexadecimal
僅
Url
%E5%83%85

Code

MD5
fb4f1cf726e7e63e04da3e6a63546932
Sha1
768770c08375eaa0257ae9208471f74e3c5435e1
Base64
5YOF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50C5';
console.log(char);  // Output: 僅

Java:

char c = '\u50C5';
System.out.println(c);  // Output: 僅

JSON:

{"text": "\u50C5"}  // Value: 僅

Python:

char = '\u50C5'
print(char)  # Output: 僅

Perl:

my $char = "\x{50C5}";
print $char;  # Output: 僅

PHP:

$char = "\x{50C5}";
echo $char;  // Output: 僅

Ruby:

char = "\u{50C5}"
puts char  # Output: 僅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20677;</p>  <!-- Display: 僅 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C5;</p>  <!-- Display: 僅 -->

URL Encoding:

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

Encodings

MD5:

fb4f1cf726e7e63e04da3e6a63546932

SHA1:

768770c08375eaa0257ae9208471f74e3c5435e1

Base64:

5YOF