Unicode Finder

"冇" U+5187(CJK UNIFIED IDEOGRAPH-5187)

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

Programming

C
\u5187
JavaScript
\u5187
Java
\u5187
Json
\u5187
Python
\u5187
Perl
\x{5187}
PHP
\x{5187}
Ruby
\u{5187}
Rust
\u{5187}
Go
\u5187

Web

CSS
\005187
HtmlDecimal
冇
HtmlHexadecimal
冇
Url
%E5%86%87

Code

MD5
52725c99001b689c2e92595b028a4cbd
Sha1
010f4623ebac62a4cf02251b9d25e675b6f22364
Base64
5YaH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5187';
console.log(char);  // Output: 冇

Java:

char c = '\u5187';
System.out.println(c);  // Output: 冇

JSON:

{"text": "\u5187"}  // Value: 冇

Python:

char = '\u5187'
print(char)  # Output: 冇

Perl:

my $char = "\x{5187}";
print $char;  # Output: 冇

PHP:

$char = "\x{5187}";
echo $char;  // Output: 冇

Ruby:

char = "\u{5187}"
puts char  # Output: 冇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005187";  /* Display: 冇 */
}

HTML Decimal:

<p>HTML decimal: &#20871;</p>  <!-- Display: 冇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5187;</p>  <!-- Display: 冇 -->

URL Encoding:

// 冇 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%87

Encodings

MD5:

52725c99001b689c2e92595b028a4cbd

SHA1:

010f4623ebac62a4cf02251b9d25e675b6f22364

Base64:

5YaH