Unicode Finder

"屇" U+5C47(CJK UNIFIED IDEOGRAPH-5C47)

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

Programming

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

Web

CSS
\005C47
HtmlDecimal
屇
HtmlHexadecimal
屇
Url
%E5%B1%87

Code

MD5
f19ebd51a1088c1d40a97ca17330be8d
Sha1
46bec303e6fc18a46f74d49b27df0b25ef570a9a
Base64
5bGH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C47';
console.log(char);  // Output: 屇

Java:

char c = '\u5C47';
System.out.println(c);  // Output: 屇

JSON:

{"text": "\u5C47"}  // Value: 屇

Python:

char = '\u5C47'
print(char)  # Output: 屇

Perl:

my $char = "\x{5C47}";
print $char;  # Output: 屇

PHP:

$char = "\x{5C47}";
echo $char;  // Output: 屇

Ruby:

char = "\u{5C47}"
puts char  # Output: 屇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23623;</p>  <!-- Display: 屇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C47;</p>  <!-- Display: 屇 -->

URL Encoding:

// 屇 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%87

Encodings

MD5:

f19ebd51a1088c1d40a97ca17330be8d

SHA1:

46bec303e6fc18a46f74d49b27df0b25ef570a9a

Base64:

5bGH