Unicode Finder

"彄" U+5F44(CJK UNIFIED IDEOGRAPH-5F44)

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

Programming

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

Web

CSS
\005F44
HtmlDecimal
彄
HtmlHexadecimal
彄
Url
%E5%BD%84

Code

MD5
51b37da5cc67d14d5fded53c108fb76f
Sha1
ade8a5d985b6dfec1bb8db463df52f23c6be4733
Base64
5b2E

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5F44';
console.log(char);  // Output: 彄

Java:

char c = '\u5F44';
System.out.println(c);  // Output: 彄

JSON:

{"text": "\u5F44"}  // Value: 彄

Python:

char = '\u5F44'
print(char)  # Output: 彄

Perl:

my $char = "\x{5F44}";
print $char;  # Output: 彄

PHP:

$char = "\x{5F44}";
echo $char;  // Output: 彄

Ruby:

char = "\u{5F44}"
puts char  # Output: 彄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24388;</p>  <!-- Display: 彄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F44;</p>  <!-- Display: 彄 -->

URL Encoding:

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

Encodings

MD5:

51b37da5cc67d14d5fded53c108fb76f

SHA1:

ade8a5d985b6dfec1bb8db463df52f23c6be4733

Base64:

5b2E