Unicode Finder

"脈" U+8108(CJK UNIFIED IDEOGRAPH-8108)

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

Programming

C
\u8108
JavaScript
\u8108
Java
\u8108
Json
\u8108
Python
\u8108
Perl
\x{8108}
PHP
\x{8108}
Ruby
\u{8108}
Rust
\u{8108}
Go
\u8108

Web

CSS
\008108
HtmlDecimal
脈
HtmlHexadecimal
脈
Url
%E8%84%88

Code

MD5
6e31f0f6edd3615c7767f8430dbd74ed
Sha1
7fb9e18c71acdb175ac41a91c3d923519486fb29
Base64
6ISI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8108';
console.log(char);  // Output: 脈

Java:

char c = '\u8108';
System.out.println(c);  // Output: 脈

JSON:

{"text": "\u8108"}  // Value: 脈

Python:

char = '\u8108'
print(char)  # Output: 脈

Perl:

my $char = "\x{8108}";
print $char;  # Output: 脈

PHP:

$char = "\x{8108}";
echo $char;  // Output: 脈

Ruby:

char = "\u{8108}"
puts char  # Output: 脈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008108";  /* Display: 脈 */
}

HTML Decimal:

<p>HTML decimal: &#33032;</p>  <!-- Display: 脈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8108;</p>  <!-- Display: 脈 -->

URL Encoding:

// 脈 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%88

Encodings

MD5:

6e31f0f6edd3615c7767f8430dbd74ed

SHA1:

7fb9e18c71acdb175ac41a91c3d923519486fb29

Base64:

6ISI