Unicode Finder

"昐" U+6610(CJK UNIFIED IDEOGRAPH-6610)

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

Programming

C
\u6610
JavaScript
\u6610
Java
\u6610
Json
\u6610
Python
\u6610
Perl
\x{6610}
PHP
\x{6610}
Ruby
\u{6610}
Rust
\u{6610}
Go
\u6610

Web

CSS
\006610
HtmlDecimal
昐
HtmlHexadecimal
昐
Url
%E6%98%90

Code

MD5
d3f6e08dedbb81a576784e69e9de0a1b
Sha1
c99949f3f6162148aad2e58039b9767c25f84ff2
Base64
5piQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6610';
console.log(char);  // Output: 昐

Java:

char c = '\u6610';
System.out.println(c);  // Output: 昐

JSON:

{"text": "\u6610"}  // Value: 昐

Python:

char = '\u6610'
print(char)  # Output: 昐

Perl:

my $char = "\x{6610}";
print $char;  # Output: 昐

PHP:

$char = "\x{6610}";
echo $char;  // Output: 昐

Ruby:

char = "\u{6610}"
puts char  # Output: 昐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006610";  /* Display: 昐 */
}

HTML Decimal:

<p>HTML decimal: &#26128;</p>  <!-- Display: 昐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6610;</p>  <!-- Display: 昐 -->

URL Encoding:

// 昐 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%90

Encodings

MD5:

d3f6e08dedbb81a576784e69e9de0a1b

SHA1:

c99949f3f6162148aad2e58039b9767c25f84ff2

Base64:

5piQ