Unicode Finder

"嘰" U+5630(CJK UNIFIED IDEOGRAPH-5630)

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

Programming

C
\u5630
JavaScript
\u5630
Java
\u5630
Json
\u5630
Python
\u5630
Perl
\x{5630}
PHP
\x{5630}
Ruby
\u{5630}
Rust
\u{5630}
Go
\u5630

Web

CSS
\005630
HtmlDecimal
嘰
HtmlHexadecimal
嘰
Url
%E5%98%B0

Code

MD5
da4db0e866e8c8b000786f8aa26f8590
Sha1
1e9efd0167da60e7e1db9099b47d76e5bdf139c5
Base64
5Ziw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5630';
console.log(char);  // Output: 嘰

Java:

char c = '\u5630';
System.out.println(c);  // Output: 嘰

JSON:

{"text": "\u5630"}  // Value: 嘰

Python:

char = '\u5630'
print(char)  # Output: 嘰

Perl:

my $char = "\x{5630}";
print $char;  # Output: 嘰

PHP:

$char = "\x{5630}";
echo $char;  // Output: 嘰

Ruby:

char = "\u{5630}"
puts char  # Output: 嘰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005630";  /* Display: 嘰 */
}

HTML Decimal:

<p>HTML decimal: &#22064;</p>  <!-- Display: 嘰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5630;</p>  <!-- Display: 嘰 -->

URL Encoding:

// 嘰 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%B0

Encodings

MD5:

da4db0e866e8c8b000786f8aa26f8590

SHA1:

1e9efd0167da60e7e1db9099b47d76e5bdf139c5

Base64:

5Ziw