Unicode Finder

"喥" U+55A5(CJK UNIFIED IDEOGRAPH-55A5)

U+55A5
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-55A5

Programming

C
\u55A5
JavaScript
\u55A5
Java
\u55A5
Json
\u55A5
Python
\u55A5
Perl
\x{55A5}
PHP
\x{55A5}
Ruby
\u{55A5}
Rust
\u{55A5}
Go
\u55A5

Web

CSS
\0055A5
HtmlDecimal
喥
HtmlHexadecimal
喥
Url
%E5%96%A5

Code

MD5
7125fb27fb0752e603592f61affd822c
Sha1
5287130f06e09d5d9cff9954c622f99034e685b5
Base64
5Zal

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u55A5';
console.log(char);  // Output: 喥

Java:

char c = '\u55A5';
System.out.println(c);  // Output: 喥

JSON:

{"text": "\u55A5"}  // Value: 喥

Python:

char = '\u55A5'
print(char)  # Output: 喥

Perl:

my $char = "\x{55A5}";
print $char;  # Output: 喥

PHP:

$char = "\x{55A5}";
echo $char;  // Output: 喥

Ruby:

char = "\u{55A5}"
puts char  # Output: 喥

Rust:

let c = '\u{55A5}';
println!("{}", c);  // Output: 喥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0055A5";  /* Display: 喥 */
}

HTML Decimal:

<p>HTML decimal: &#21925;</p>  <!-- Display: 喥 -->

HTML Hexadecimal:

<p>HTML hex: &#x55A5;</p>  <!-- Display: 喥 -->

URL Encoding:

// 喥 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%A5

Encodings

MD5:

7125fb27fb0752e603592f61affd822c

SHA1:

5287130f06e09d5d9cff9954c622f99034e685b5

Base64:

5Zal