Unicode Finder

"倄" U+5004(CJK UNIFIED IDEOGRAPH-5004)

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

Programming

C
\u5004
JavaScript
\u5004
Java
\u5004
Json
\u5004
Python
\u5004
Perl
\x{5004}
PHP
\x{5004}
Ruby
\u{5004}
Rust
\u{5004}
Go
\u5004

Web

CSS
\005004
HtmlDecimal
倄
HtmlHexadecimal
倄
Url
%E5%80%84

Code

MD5
9db02ba1de86dcd32eb4b4299e78f732
Sha1
12e5b179c4c4dd865518ae00d8cd18897b756b1a
Base64
5YCE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5004';
console.log(char);  // Output: 倄

Java:

char c = '\u5004';
System.out.println(c);  // Output: 倄

JSON:

{"text": "\u5004"}  // Value: 倄

Python:

char = '\u5004'
print(char)  # Output: 倄

Perl:

my $char = "\x{5004}";
print $char;  # Output: 倄

PHP:

$char = "\x{5004}";
echo $char;  // Output: 倄

Ruby:

char = "\u{5004}"
puts char  # Output: 倄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005004";  /* Display: 倄 */
}

HTML Decimal:

<p>HTML decimal: &#20484;</p>  <!-- Display: 倄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5004;</p>  <!-- Display: 倄 -->

URL Encoding:

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

Encodings

MD5:

9db02ba1de86dcd32eb4b4299e78f732

SHA1:

12e5b179c4c4dd865518ae00d8cd18897b756b1a

Base64:

5YCE