Unicode Finder

"霔" U+9714(CJK UNIFIED IDEOGRAPH-9714)

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

Programming

C
\u9714
JavaScript
\u9714
Java
\u9714
Json
\u9714
Python
\u9714
Perl
\x{9714}
PHP
\x{9714}
Ruby
\u{9714}
Rust
\u{9714}
Go
\u9714

Web

CSS
\009714
HtmlDecimal
霔
HtmlHexadecimal
霔
Url
%E9%9C%94

Code

MD5
fa9f199f7ab040323ec7e7bd80c47e8f
Sha1
477415b8f7f8cbb3435cc90ed65016bf778df733
Base64
6ZyU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9714';
console.log(char);  // Output: 霔

Java:

char c = '\u9714';
System.out.println(c);  // Output: 霔

JSON:

{"text": "\u9714"}  // Value: 霔

Python:

char = '\u9714'
print(char)  # Output: 霔

Perl:

my $char = "\x{9714}";
print $char;  # Output: 霔

PHP:

$char = "\x{9714}";
echo $char;  // Output: 霔

Ruby:

char = "\u{9714}"
puts char  # Output: 霔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009714";  /* Display: 霔 */
}

HTML Decimal:

<p>HTML decimal: &#38676;</p>  <!-- Display: 霔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9714;</p>  <!-- Display: 霔 -->

URL Encoding:

// 霔 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%94

Encodings

MD5:

fa9f199f7ab040323ec7e7bd80c47e8f

SHA1:

477415b8f7f8cbb3435cc90ed65016bf778df733

Base64:

6ZyU