Unicode Finder

"富" U+5BCC(CJK UNIFIED IDEOGRAPH-5BCC)

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

Programming

C
\u5BCC
JavaScript
\u5BCC
Java
\u5BCC
Json
\u5BCC
Python
\u5BCC
Perl
\x{5BCC}
PHP
\x{5BCC}
Ruby
\u{5BCC}
Rust
\u{5BCC}
Go
\u5BCC

Web

CSS
\005BCC
HtmlDecimal
富
HtmlHexadecimal
富
Url
%E5%AF%8C

Code

MD5
3d62a861d7dde371939fdb6c19ad6104
Sha1
c6b3779c69f4aff451f8a99e4e4b32c0b8784514
Base64
5a+M

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5BCC';
console.log(char);  // Output: 富

Java:

char c = '\u5BCC';
System.out.println(c);  // Output: 富

JSON:

{"text": "\u5BCC"}  // Value: 富

Python:

char = '\u5BCC'
print(char)  # Output: 富

Perl:

my $char = "\x{5BCC}";
print $char;  # Output: 富

PHP:

$char = "\x{5BCC}";
echo $char;  // Output: 富

Ruby:

char = "\u{5BCC}"
puts char  # Output: 富

Rust:

let c = '\u{5BCC}';
println!("{}", c);  // Output: 富

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BCC";  /* Display: 富 */
}

HTML Decimal:

<p>HTML decimal: &#23500;</p>  <!-- Display: 富 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BCC;</p>  <!-- Display: 富 -->

URL Encoding:

// 富 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%8C

Encodings

MD5:

3d62a861d7dde371939fdb6c19ad6104

SHA1:

c6b3779c69f4aff451f8a99e4e4b32c0b8784514

Base64:

5a+M