Unicode Finder

"倐" U+5010(CJK UNIFIED IDEOGRAPH-5010)

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

Programming

C
\u5010
JavaScript
\u5010
Java
\u5010
Json
\u5010
Python
\u5010
Perl
\x{5010}
PHP
\x{5010}
Ruby
\u{5010}
Rust
\u{5010}
Go
\u5010

Web

CSS
\005010
HtmlDecimal
倐
HtmlHexadecimal
倐
Url
%E5%80%90

Code

MD5
bd6988a0b4a57b955ddd06048abada43
Sha1
fd57af149a0f87d2771dd386797c8d326d8b0705
Base64
5YCQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5010';
console.log(char);  // Output: 倐

Java:

char c = '\u5010';
System.out.println(c);  // Output: 倐

JSON:

{"text": "\u5010"}  // Value: 倐

Python:

char = '\u5010'
print(char)  # Output: 倐

Perl:

my $char = "\x{5010}";
print $char;  # Output: 倐

PHP:

$char = "\x{5010}";
echo $char;  // Output: 倐

Ruby:

char = "\u{5010}"
puts char  # Output: 倐

Rust:

let c = '\u{5010}';
println!("{}", c);  // Output: 倐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005010";  /* Display: 倐 */
}

HTML Decimal:

<p>HTML decimal: &#20496;</p>  <!-- Display: 倐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5010;</p>  <!-- Display: 倐 -->

URL Encoding:

// 倐 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%90

Encodings

MD5:

bd6988a0b4a57b955ddd06048abada43

SHA1:

fd57af149a0f87d2771dd386797c8d326d8b0705

Base64:

5YCQ