Unicode Finder

"倍" U+500D(CJK UNIFIED IDEOGRAPH-500D)

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

Programming

C
\u500D
JavaScript
\u500D
Java
\u500D
Json
\u500D
Python
\u500D
Perl
\x{500D}
PHP
\x{500D}
Ruby
\u{500D}
Rust
\u{500D}
Go
\u500D

Web

CSS
\00500D
HtmlDecimal
倍
HtmlHexadecimal
倍
Url
%E5%80%8D

Code

MD5
a9071b454b601bc837a3703ca215bc56
Sha1
a1f58208a2e2eb8d1b726a18cf3d531413f86b22
Base64
5YCN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u500D';
console.log(char);  // Output: 倍

Java:

char c = '\u500D';
System.out.println(c);  // Output: 倍

JSON:

{"text": "\u500D"}  // Value: 倍

Python:

char = '\u500D'
print(char)  # Output: 倍

Perl:

my $char = "\x{500D}";
print $char;  # Output: 倍

PHP:

$char = "\x{500D}";
echo $char;  // Output: 倍

Ruby:

char = "\u{500D}"
puts char  # Output: 倍

Rust:

let c = '\u{500D}';
println!("{}", c);  // Output: 倍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00500D";  /* Display: 倍 */
}

HTML Decimal:

<p>HTML decimal: &#20493;</p>  <!-- Display: 倍 -->

HTML Hexadecimal:

<p>HTML hex: &#x500D;</p>  <!-- Display: 倍 -->

URL Encoding:

// 倍 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%8D

Encodings

MD5:

a9071b454b601bc837a3703ca215bc56

SHA1:

a1f58208a2e2eb8d1b726a18cf3d531413f86b22

Base64:

5YCN