Unicode Finder

"礁" U+7901(CJK UNIFIED IDEOGRAPH-7901)

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

Programming

C
\u7901
JavaScript
\u7901
Java
\u7901
Json
\u7901
Python
\u7901
Perl
\x{7901}
PHP
\x{7901}
Ruby
\u{7901}
Rust
\u{7901}
Go
\u7901

Web

CSS
\007901
HtmlDecimal
礁
HtmlHexadecimal
礁
Url
%E7%A4%81

Code

MD5
4b2951fee0add722c151ff0dee2b4459
Sha1
1cdfca0744b89e5d83e9bdb98bc06d90248ca959
Base64
56SB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7901';
console.log(char);  // Output: 礁

Java:

char c = '\u7901';
System.out.println(c);  // Output: 礁

JSON:

{"text": "\u7901"}  // Value: 礁

Python:

char = '\u7901'
print(char)  # Output: 礁

Perl:

my $char = "\x{7901}";
print $char;  # Output: 礁

PHP:

$char = "\x{7901}";
echo $char;  // Output: 礁

Ruby:

char = "\u{7901}"
puts char  # Output: 礁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007901";  /* Display: 礁 */
}

HTML Decimal:

<p>HTML decimal: &#30977;</p>  <!-- Display: 礁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7901;</p>  <!-- Display: 礁 -->

URL Encoding:

// 礁 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%81

Encodings

MD5:

4b2951fee0add722c151ff0dee2b4459

SHA1:

1cdfca0744b89e5d83e9bdb98bc06d90248ca959

Base64:

56SB