Unicode Finder

"倭" U+502D(CJK UNIFIED IDEOGRAPH-502D)

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

Programming

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

Web

CSS
\00502D
HtmlDecimal
倭
HtmlHexadecimal
倭
Url
%E5%80%AD

Code

MD5
d32ef6bc2ba2de637d97c0fe20bc04ce
Sha1
93f9ad98172a17ab540ad82ec21575292fb4d9c0
Base64
5YCt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u502D';
console.log(char);  // Output: 倭

Java:

char c = '\u502D';
System.out.println(c);  // Output: 倭

JSON:

{"text": "\u502D"}  // Value: 倭

Python:

char = '\u502D'
print(char)  # Output: 倭

Perl:

my $char = "\x{502D}";
print $char;  # Output: 倭

PHP:

$char = "\x{502D}";
echo $char;  // Output: 倭

Ruby:

char = "\u{502D}"
puts char  # Output: 倭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20525;</p>  <!-- Display: 倭 -->

HTML Hexadecimal:

<p>HTML hex: &#x502D;</p>  <!-- Display: 倭 -->

URL Encoding:

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

Encodings

MD5:

d32ef6bc2ba2de637d97c0fe20bc04ce

SHA1:

93f9ad98172a17ab540ad82ec21575292fb4d9c0

Base64:

5YCt