Unicode Finder

"啜" U+555C(CJK UNIFIED IDEOGRAPH-555C)

U+555C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-555C

Programming

C
\u555C
JavaScript
\u555C
Java
\u555C
Json
\u555C
Python
\u555C
Perl
\x{555C}
PHP
\x{555C}
Ruby
\u{555C}
Rust
\u{555C}
Go
\u555C

Web

CSS
\00555C
HtmlDecimal
啜
HtmlHexadecimal
啜
Url
%E5%95%9C

Code

MD5
edda75b3430cab2e4031a3a1b21002b6
Sha1
f7a422772478b885e633d5a461ab5bf975743f66
Base64
5ZWc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u555C';
console.log(char);  // Output: 啜

Java:

char c = '\u555C';
System.out.println(c);  // Output: 啜

JSON:

{"text": "\u555C"}  // Value: 啜

Python:

char = '\u555C'
print(char)  # Output: 啜

Perl:

my $char = "\x{555C}";
print $char;  # Output: 啜

PHP:

$char = "\x{555C}";
echo $char;  // Output: 啜

Ruby:

char = "\u{555C}"
puts char  # Output: 啜

Rust:

let c = '\u{555C}';
println!("{}", c);  // Output: 啜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00555C";  /* Display: 啜 */
}

HTML Decimal:

<p>HTML decimal: &#21852;</p>  <!-- Display: 啜 -->

HTML Hexadecimal:

<p>HTML hex: &#x555C;</p>  <!-- Display: 啜 -->

URL Encoding:

// 啜 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%9C

Encodings

MD5:

edda75b3430cab2e4031a3a1b21002b6

SHA1:

f7a422772478b885e633d5a461ab5bf975743f66

Base64:

5ZWc