Unicode Finder

"夷" U+5937(CJK UNIFIED IDEOGRAPH-5937)

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

Programming

C
\u5937
JavaScript
\u5937
Java
\u5937
Json
\u5937
Python
\u5937
Perl
\x{5937}
PHP
\x{5937}
Ruby
\u{5937}
Rust
\u{5937}
Go
\u5937

Web

CSS
\005937
HtmlDecimal
夷
HtmlHexadecimal
夷
Url
%E5%A4%B7

Code

MD5
d181e99861b4bb26c810d990cd71993e
Sha1
b563885f6e2f594a790134c77a59df817f45fb2d
Base64
5aS3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5937';
console.log(char);  // Output: 夷

Java:

char c = '\u5937';
System.out.println(c);  // Output: 夷

JSON:

{"text": "\u5937"}  // Value: 夷

Python:

char = '\u5937'
print(char)  # Output: 夷

Perl:

my $char = "\x{5937}";
print $char;  # Output: 夷

PHP:

$char = "\x{5937}";
echo $char;  // Output: 夷

Ruby:

char = "\u{5937}"
puts char  # Output: 夷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005937";  /* Display: 夷 */
}

HTML Decimal:

<p>HTML decimal: &#22839;</p>  <!-- Display: 夷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5937;</p>  <!-- Display: 夷 -->

URL Encoding:

// 夷 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%B7

Encodings

MD5:

d181e99861b4bb26c810d990cd71993e

SHA1:

b563885f6e2f594a790134c77a59df817f45fb2d

Base64:

5aS3