Unicode Finder

"彇" U+5F47(CJK UNIFIED IDEOGRAPH-5F47)

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

Programming

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

Web

CSS
\005F47
HtmlDecimal
彇
HtmlHexadecimal
彇
Url
%E5%BD%87

Code

MD5
f14f65bb068e4f7953b851170961ca42
Sha1
5005cda25292a08909fe89a83040cda16ddd87bc
Base64
5b2H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5F47';
console.log(char);  // Output: 彇

Java:

char c = '\u5F47';
System.out.println(c);  // Output: 彇

JSON:

{"text": "\u5F47"}  // Value: 彇

Python:

char = '\u5F47'
print(char)  # Output: 彇

Perl:

my $char = "\x{5F47}";
print $char;  # Output: 彇

PHP:

$char = "\x{5F47}";
echo $char;  // Output: 彇

Ruby:

char = "\u{5F47}"
puts char  # Output: 彇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24391;</p>  <!-- Display: 彇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F47;</p>  <!-- Display: 彇 -->

URL Encoding:

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

Encodings

MD5:

f14f65bb068e4f7953b851170961ca42

SHA1:

5005cda25292a08909fe89a83040cda16ddd87bc

Base64:

5b2H