Unicode Finder

"廅" U+5EC5(CJK UNIFIED IDEOGRAPH-5EC5)

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

Programming

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

Web

CSS
\005EC5
HtmlDecimal
廅
HtmlHexadecimal
廅
Url
%E5%BB%85

Code

MD5
1b7d4d0aa23a7335d155412e1831a0d5
Sha1
ee311d35f489201f3175953d173b9a5ef72134b0
Base64
5buF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC5';
console.log(char);  // Output: 廅

Java:

char c = '\u5EC5';
System.out.println(c);  // Output: 廅

JSON:

{"text": "\u5EC5"}  // Value: 廅

Python:

char = '\u5EC5'
print(char)  # Output: 廅

Perl:

my $char = "\x{5EC5}";
print $char;  # Output: 廅

PHP:

$char = "\x{5EC5}";
echo $char;  // Output: 廅

Ruby:

char = "\u{5EC5}"
puts char  # Output: 廅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24261;</p>  <!-- Display: 廅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC5;</p>  <!-- Display: 廅 -->

URL Encoding:

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

Encodings

MD5:

1b7d4d0aa23a7335d155412e1831a0d5

SHA1:

ee311d35f489201f3175953d173b9a5ef72134b0

Base64:

5buF