Unicode Finder

"僄" U+50C4(CJK UNIFIED IDEOGRAPH-50C4)

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

Programming

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

Web

CSS
\0050C4
HtmlDecimal
僄
HtmlHexadecimal
僄
Url
%E5%83%84

Code

MD5
95a99e7c0a07727df3a00315f232c0b0
Sha1
dbfdbca8915effc987af1c7f5486edd3399d7b95
Base64
5YOE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50C4';
console.log(char);  // Output: 僄

Java:

char c = '\u50C4';
System.out.println(c);  // Output: 僄

JSON:

{"text": "\u50C4"}  // Value: 僄

Python:

char = '\u50C4'
print(char)  # Output: 僄

Perl:

my $char = "\x{50C4}";
print $char;  # Output: 僄

PHP:

$char = "\x{50C4}";
echo $char;  // Output: 僄

Ruby:

char = "\u{50C4}"
puts char  # Output: 僄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20676;</p>  <!-- Display: 僄 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C4;</p>  <!-- Display: 僄 -->

URL Encoding:

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

Encodings

MD5:

95a99e7c0a07727df3a00315f232c0b0

SHA1:

dbfdbca8915effc987af1c7f5486edd3399d7b95

Base64:

5YOE