Unicode Finder

"晋" U+664B(CJK UNIFIED IDEOGRAPH-664B)

U+664B
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-664B

Programming

C
\u664B
JavaScript
\u664B
Java
\u664B
Json
\u664B
Python
\u664B
Perl
\x{664B}
PHP
\x{664B}
Ruby
\u{664B}
Rust
\u{664B}
Go
\u664B

Web

CSS
\00664B
HtmlDecimal
晋
HtmlHexadecimal
晋
Url
%E6%99%8B

Code

MD5
be1436a9472e0b6b4e09f6d9d208d8cf
Sha1
2af4fe2b491228db93a50662fc1539353532946e
Base64
5pmL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u664B';
console.log(char);  // Output: 晋

Java:

char c = '\u664B';
System.out.println(c);  // Output: 晋

JSON:

{"text": "\u664B"}  // Value: 晋

Python:

char = '\u664B'
print(char)  # Output: 晋

Perl:

my $char = "\x{664B}";
print $char;  # Output: 晋

PHP:

$char = "\x{664B}";
echo $char;  // Output: 晋

Ruby:

char = "\u{664B}"
puts char  # Output: 晋

Rust:

let c = '\u{664B}';
println!("{}", c);  // Output: 晋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00664B";  /* Display: 晋 */
}

HTML Decimal:

<p>HTML decimal: &#26187;</p>  <!-- Display: 晋 -->

HTML Hexadecimal:

<p>HTML hex: &#x664B;</p>  <!-- Display: 晋 -->

URL Encoding:

// 晋 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%8B

Encodings

MD5:

be1436a9472e0b6b4e09f6d9d208d8cf

SHA1:

2af4fe2b491228db93a50662fc1539353532946e

Base64:

5pmL