Unicode Finder

"弞" U+5F1E(CJK UNIFIED IDEOGRAPH-5F1E)

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

Programming

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

Web

CSS
\005F1E
HtmlDecimal
弞
HtmlHexadecimal
弞
Url
%E5%BC%9E

Code

MD5
ea37100ccda22d467bd9b50b52e868ef
Sha1
45f2b97fb9e5ae1fa6eeb9acfa18e41f86d68f4e
Base64
5bye

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F1E';
console.log(char);  // Output: 弞

Java:

char c = '\u5F1E';
System.out.println(c);  // Output: 弞

JSON:

{"text": "\u5F1E"}  // Value: 弞

Python:

char = '\u5F1E'
print(char)  # Output: 弞

Perl:

my $char = "\x{5F1E}";
print $char;  # Output: 弞

PHP:

$char = "\x{5F1E}";
echo $char;  // Output: 弞

Ruby:

char = "\u{5F1E}"
puts char  # Output: 弞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24350;</p>  <!-- Display: 弞 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F1E;</p>  <!-- Display: 弞 -->

URL Encoding:

// 弞 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%9E

Encodings

MD5:

ea37100ccda22d467bd9b50b52e868ef

SHA1:

45f2b97fb9e5ae1fa6eeb9acfa18e41f86d68f4e

Base64:

5bye