Unicode Finder

"崓" U+5D13(CJK UNIFIED IDEOGRAPH-5D13)

U+5D13
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5D13

Programming

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

Web

CSS
\005D13
HtmlDecimal
崓
HtmlHexadecimal
崓
Url
%E5%B4%93

Code

MD5
4a1e1d86434a365c854e5a112e893977
Sha1
1544c105f396f0b222d2b852457e7bdd2f0a3d5c
Base64
5bST

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D13';
console.log(char);  // Output: 崓

Java:

char c = '\u5D13';
System.out.println(c);  // Output: 崓

JSON:

{"text": "\u5D13"}  // Value: 崓

Python:

char = '\u5D13'
print(char)  # Output: 崓

Perl:

my $char = "\x{5D13}";
print $char;  # Output: 崓

PHP:

$char = "\x{5D13}";
echo $char;  // Output: 崓

Ruby:

char = "\u{5D13}"
puts char  # Output: 崓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23827;</p>  <!-- Display: 崓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D13;</p>  <!-- Display: 崓 -->

URL Encoding:

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

Encodings

MD5:

4a1e1d86434a365c854e5a112e893977

SHA1:

1544c105f396f0b222d2b852457e7bdd2f0a3d5c

Base64:

5bST