Unicode Finder

"廉" U+5EC9(CJK UNIFIED IDEOGRAPH-5EC9)

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

Programming

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

Web

CSS
\005EC9
HtmlDecimal
廉
HtmlHexadecimal
廉
Url
%E5%BB%89

Code

MD5
9982173a986b4ec5217941374e0355f1
Sha1
67bc0f2b5c75690d6b197fa5ec8e2564baffd637
Base64
5buJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC9';
console.log(char);  // Output: 廉

Java:

char c = '\u5EC9';
System.out.println(c);  // Output: 廉

JSON:

{"text": "\u5EC9"}  // Value: 廉

Python:

char = '\u5EC9'
print(char)  # Output: 廉

Perl:

my $char = "\x{5EC9}";
print $char;  # Output: 廉

PHP:

$char = "\x{5EC9}";
echo $char;  // Output: 廉

Ruby:

char = "\u{5EC9}"
puts char  # Output: 廉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24265;</p>  <!-- Display: 廉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC9;</p>  <!-- Display: 廉 -->

URL Encoding:

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

Encodings

MD5:

9982173a986b4ec5217941374e0355f1

SHA1:

67bc0f2b5c75690d6b197fa5ec8e2564baffd637

Base64:

5buJ