Unicode Finder

"巟" U+5DDF(CJK UNIFIED IDEOGRAPH-5DDF)

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

Programming

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

Web

CSS
\005DDF
HtmlDecimal
巟
HtmlHexadecimal
巟
Url
%E5%B7%9F

Code

MD5
73ca279406bea7e8f2c32977ee73f877
Sha1
75eedfd2990edd5b576ba43c09d4294ea0624da8
Base64
5bef

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DDF';
console.log(char);  // Output: 巟

Java:

char c = '\u5DDF';
System.out.println(c);  // Output: 巟

JSON:

{"text": "\u5DDF"}  // Value: 巟

Python:

char = '\u5DDF'
print(char)  # Output: 巟

Perl:

my $char = "\x{5DDF}";
print $char;  # Output: 巟

PHP:

$char = "\x{5DDF}";
echo $char;  // Output: 巟

Ruby:

char = "\u{5DDF}"
puts char  # Output: 巟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24031;</p>  <!-- Display: 巟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DDF;</p>  <!-- Display: 巟 -->

URL Encoding:

// 巟 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%9F

Encodings

MD5:

73ca279406bea7e8f2c32977ee73f877

SHA1:

75eedfd2990edd5b576ba43c09d4294ea0624da8

Base64:

5bef