Unicode Finder

"嶼" U+5DBC(CJK UNIFIED IDEOGRAPH-5DBC)

U+5DBC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5DBC

Programming

C
\u5DBC
JavaScript
\u5DBC
Java
\u5DBC
Json
\u5DBC
Python
\u5DBC
Perl
\x{5DBC}
PHP
\x{5DBC}
Ruby
\u{5DBC}
Rust
\u{5DBC}
Go
\u5DBC

Web

CSS
\005DBC
HtmlDecimal
嶼
HtmlHexadecimal
嶼
Url
%E5%B6%BC

Code

MD5
6e4a28221082fb2303e5aa2ee3fbdfb4
Sha1
8d6ab0ee66fc235e53214cd531d1548bc6e51f53
Base64
5ba8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DBC';
console.log(char);  // Output: 嶼

Java:

char c = '\u5DBC';
System.out.println(c);  // Output: 嶼

JSON:

{"text": "\u5DBC"}  // Value: 嶼

Python:

char = '\u5DBC'
print(char)  # Output: 嶼

Perl:

my $char = "\x{5DBC}";
print $char;  # Output: 嶼

PHP:

$char = "\x{5DBC}";
echo $char;  // Output: 嶼

Ruby:

char = "\u{5DBC}"
puts char  # Output: 嶼

Rust:

let c = '\u{5DBC}';
println!("{}", c);  // Output: 嶼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005DBC";  /* Display: 嶼 */
}

HTML Decimal:

<p>HTML decimal: &#23996;</p>  <!-- Display: 嶼 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DBC;</p>  <!-- Display: 嶼 -->

URL Encoding:

// 嶼 URL encoding
https://unicodefinder.com/search.php?query=%E5%B6%BC

Encodings

MD5:

6e4a28221082fb2303e5aa2ee3fbdfb4

SHA1:

8d6ab0ee66fc235e53214cd531d1548bc6e51f53

Base64:

5ba8