Unicode Finder

"崒" U+5D12(CJK UNIFIED IDEOGRAPH-5D12)

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

Programming

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

Web

CSS
\005D12
HtmlDecimal
崒
HtmlHexadecimal
崒
Url
%E5%B4%92

Code

MD5
f3eb0b619d27372969cc5c87ff426458
Sha1
597496494d0d740790206f442bfc6fce64a96674
Base64
5bSS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D12';
console.log(char);  // Output: 崒

Java:

char c = '\u5D12';
System.out.println(c);  // Output: 崒

JSON:

{"text": "\u5D12"}  // Value: 崒

Python:

char = '\u5D12'
print(char)  # Output: 崒

Perl:

my $char = "\x{5D12}";
print $char;  # Output: 崒

PHP:

$char = "\x{5D12}";
echo $char;  // Output: 崒

Ruby:

char = "\u{5D12}"
puts char  # Output: 崒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23826;</p>  <!-- Display: 崒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D12;</p>  <!-- Display: 崒 -->

URL Encoding:

// 崒 URL encoding
https://unicodefinder.com/search.php?query=%E5%B4%92

Encodings

MD5:

f3eb0b619d27372969cc5c87ff426458

SHA1:

597496494d0d740790206f442bfc6fce64a96674

Base64:

5bSS