Unicode Finder

"崞" U+5D1E(CJK UNIFIED IDEOGRAPH-5D1E)

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

Programming

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

Web

CSS
\005D1E
HtmlDecimal
崞
HtmlHexadecimal
崞
Url
%E5%B4%9E

Code

MD5
195772740adf09520c3254dbc1654284
Sha1
e352def35110ecedc7da5b4007a6ce55073a528a
Base64
5bSe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D1E';
console.log(char);  // Output: 崞

Java:

char c = '\u5D1E';
System.out.println(c);  // Output: 崞

JSON:

{"text": "\u5D1E"}  // Value: 崞

Python:

char = '\u5D1E'
print(char)  # Output: 崞

Perl:

my $char = "\x{5D1E}";
print $char;  # Output: 崞

PHP:

$char = "\x{5D1E}";
echo $char;  // Output: 崞

Ruby:

char = "\u{5D1E}"
puts char  # Output: 崞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23838;</p>  <!-- Display: 崞 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D1E;</p>  <!-- Display: 崞 -->

URL Encoding:

// 崞 URL encoding
https://unicodefinder.com/search.php?query=%E5%B4%9E

Encodings

MD5:

195772740adf09520c3254dbc1654284

SHA1:

e352def35110ecedc7da5b4007a6ce55073a528a

Base64:

5bSe