Unicode Finder

"嶻" U+5DBB(CJK UNIFIED IDEOGRAPH-5DBB)

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

Programming

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

Web

CSS
\005DBB
HtmlDecimal
嶻
HtmlHexadecimal
嶻
Url
%E5%B6%BB

Code

MD5
340ebb7c94ea44dee4a2029a7aae06d6
Sha1
e4890b6b9f201ae8a8702363ee24dedf1dd042b4
Base64
5ba7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DBB';
console.log(char);  // Output: 嶻

Java:

char c = '\u5DBB';
System.out.println(c);  // Output: 嶻

JSON:

{"text": "\u5DBB"}  // Value: 嶻

Python:

char = '\u5DBB'
print(char)  # Output: 嶻

Perl:

my $char = "\x{5DBB}";
print $char;  # Output: 嶻

PHP:

$char = "\x{5DBB}";
echo $char;  // Output: 嶻

Ruby:

char = "\u{5DBB}"
puts char  # Output: 嶻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23995;</p>  <!-- Display: 嶻 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DBB;</p>  <!-- Display: 嶻 -->

URL Encoding:

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

Encodings

MD5:

340ebb7c94ea44dee4a2029a7aae06d6

SHA1:

e4890b6b9f201ae8a8702363ee24dedf1dd042b4

Base64:

5ba7