Unicode Finder

"塷" U+5877(CJK UNIFIED IDEOGRAPH-5877)

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

Programming

C
\u5877
JavaScript
\u5877
Java
\u5877
Json
\u5877
Python
\u5877
Perl
\x{5877}
PHP
\x{5877}
Ruby
\u{5877}
Rust
\u{5877}
Go
\u5877

Web

CSS
\005877
HtmlDecimal
塷
HtmlHexadecimal
塷
Url
%E5%A1%B7

Code

MD5
f3926a4dc2c5ddc85562bd4b685cecc6
Sha1
abf9e51795e3078d8b4247f8e153685a9f3a30ad
Base64
5aG3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5877';
console.log(char);  // Output: 塷

Java:

char c = '\u5877';
System.out.println(c);  // Output: 塷

JSON:

{"text": "\u5877"}  // Value: 塷

Python:

char = '\u5877'
print(char)  # Output: 塷

Perl:

my $char = "\x{5877}";
print $char;  # Output: 塷

PHP:

$char = "\x{5877}";
echo $char;  // Output: 塷

Ruby:

char = "\u{5877}"
puts char  # Output: 塷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005877";  /* Display: 塷 */
}

HTML Decimal:

<p>HTML decimal: &#22647;</p>  <!-- Display: 塷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5877;</p>  <!-- Display: 塷 -->

URL Encoding:

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

Encodings

MD5:

f3926a4dc2c5ddc85562bd4b685cecc6

SHA1:

abf9e51795e3078d8b4247f8e153685a9f3a30ad

Base64:

5aG3