Unicode Finder

"嶵" U+5DB5(CJK UNIFIED IDEOGRAPH-5DB5)

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

Programming

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

Web

CSS
\005DB5
HtmlDecimal
嶵
HtmlHexadecimal
嶵
Url
%E5%B6%B5

Code

MD5
ae560711f2cf8b1d257b667fd125dee8
Sha1
82751ff3277c6be45b290b475637e98a2e0dd16a
Base64
5ba1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DB5';
console.log(char);  // Output: 嶵

Java:

char c = '\u5DB5';
System.out.println(c);  // Output: 嶵

JSON:

{"text": "\u5DB5"}  // Value: 嶵

Python:

char = '\u5DB5'
print(char)  # Output: 嶵

Perl:

my $char = "\x{5DB5}";
print $char;  # Output: 嶵

PHP:

$char = "\x{5DB5}";
echo $char;  // Output: 嶵

Ruby:

char = "\u{5DB5}"
puts char  # Output: 嶵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23989;</p>  <!-- Display: 嶵 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DB5;</p>  <!-- Display: 嶵 -->

URL Encoding:

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

Encodings

MD5:

ae560711f2cf8b1d257b667fd125dee8

SHA1:

82751ff3277c6be45b290b475637e98a2e0dd16a

Base64:

5ba1