Unicode Finder

"偕" U+5055(CJK UNIFIED IDEOGRAPH-5055)

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

Programming

C
\u5055
JavaScript
\u5055
Java
\u5055
Json
\u5055
Python
\u5055
Perl
\x{5055}
PHP
\x{5055}
Ruby
\u{5055}
Rust
\u{5055}
Go
\u5055

Web

CSS
\005055
HtmlDecimal
偕
HtmlHexadecimal
偕
Url
%E5%81%95

Code

MD5
f8d1fe7e2720850e39c36d4e2968be36
Sha1
146114fbb22384388901932cedd1a594a82c7f64
Base64
5YGV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5055';
console.log(char);  // Output: 偕

Java:

char c = '\u5055';
System.out.println(c);  // Output: 偕

JSON:

{"text": "\u5055"}  // Value: 偕

Python:

char = '\u5055'
print(char)  # Output: 偕

Perl:

my $char = "\x{5055}";
print $char;  # Output: 偕

PHP:

$char = "\x{5055}";
echo $char;  // Output: 偕

Ruby:

char = "\u{5055}"
puts char  # Output: 偕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005055";  /* Display: 偕 */
}

HTML Decimal:

<p>HTML decimal: &#20565;</p>  <!-- Display: 偕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5055;</p>  <!-- Display: 偕 -->

URL Encoding:

// 偕 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%95

Encodings

MD5:

f8d1fe7e2720850e39c36d4e2968be36

SHA1:

146114fbb22384388901932cedd1a594a82c7f64

Base64:

5YGV