Unicode Finder

"脉" U+8109(CJK UNIFIED IDEOGRAPH-8109)

U+8109
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8109

Programming

C
\u8109
JavaScript
\u8109
Java
\u8109
Json
\u8109
Python
\u8109
Perl
\x{8109}
PHP
\x{8109}
Ruby
\u{8109}
Rust
\u{8109}
Go
\u8109

Web

CSS
\008109
HtmlDecimal
脉
HtmlHexadecimal
脉
Url
%E8%84%89

Code

MD5
41ef0f8432dd33333b1c93232a39d7b8
Sha1
ad08b10ab3e496cde821a560a9702cc829945073
Base64
6ISJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8109';
console.log(char);  // Output: 脉

Java:

char c = '\u8109';
System.out.println(c);  // Output: 脉

JSON:

{"text": "\u8109"}  // Value: 脉

Python:

char = '\u8109'
print(char)  # Output: 脉

Perl:

my $char = "\x{8109}";
print $char;  # Output: 脉

PHP:

$char = "\x{8109}";
echo $char;  // Output: 脉

Ruby:

char = "\u{8109}"
puts char  # Output: 脉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008109";  /* Display: 脉 */
}

HTML Decimal:

<p>HTML decimal: &#33033;</p>  <!-- Display: 脉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8109;</p>  <!-- Display: 脉 -->

URL Encoding:

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

Encodings

MD5:

41ef0f8432dd33333b1c93232a39d7b8

SHA1:

ad08b10ab3e496cde821a560a9702cc829945073

Base64:

6ISJ