Unicode Finder

"倈" U+5008(CJK UNIFIED IDEOGRAPH-5008)

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

Programming

C
\u5008
JavaScript
\u5008
Java
\u5008
Json
\u5008
Python
\u5008
Perl
\x{5008}
PHP
\x{5008}
Ruby
\u{5008}
Rust
\u{5008}
Go
\u5008

Web

CSS
\005008
HtmlDecimal
倈
HtmlHexadecimal
倈
Url
%E5%80%88

Code

MD5
34c1df2fac8b102ec809c41bd9d1acae
Sha1
015ef0a95b984af050b3ae707cc0ef3f58a9c36a
Base64
5YCI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5008';
console.log(char);  // Output: 倈

Java:

char c = '\u5008';
System.out.println(c);  // Output: 倈

JSON:

{"text": "\u5008"}  // Value: 倈

Python:

char = '\u5008'
print(char)  # Output: 倈

Perl:

my $char = "\x{5008}";
print $char;  # Output: 倈

PHP:

$char = "\x{5008}";
echo $char;  // Output: 倈

Ruby:

char = "\u{5008}"
puts char  # Output: 倈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005008";  /* Display: 倈 */
}

HTML Decimal:

<p>HTML decimal: &#20488;</p>  <!-- Display: 倈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5008;</p>  <!-- Display: 倈 -->

URL Encoding:

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

Encodings

MD5:

34c1df2fac8b102ec809c41bd9d1acae

SHA1:

015ef0a95b984af050b3ae707cc0ef3f58a9c36a

Base64:

5YCI