Unicode Finder

"弁" U+5F01(CJK UNIFIED IDEOGRAPH-5F01)

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

Programming

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

Web

CSS
\005F01
HtmlDecimal
弁
HtmlHexadecimal
弁
Url
%E5%BC%81

Code

MD5
020a54126ac687fc3be2ffe0bd7e950c
Sha1
c12a2fd1982231a6f417cf04e99babf76dd19f2b
Base64
5byB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F01';
console.log(char);  // Output: 弁

Java:

char c = '\u5F01';
System.out.println(c);  // Output: 弁

JSON:

{"text": "\u5F01"}  // Value: 弁

Python:

char = '\u5F01'
print(char)  # Output: 弁

Perl:

my $char = "\x{5F01}";
print $char;  # Output: 弁

PHP:

$char = "\x{5F01}";
echo $char;  // Output: 弁

Ruby:

char = "\u{5F01}"
puts char  # Output: 弁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24321;</p>  <!-- Display: 弁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F01;</p>  <!-- Display: 弁 -->

URL Encoding:

// 弁 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%81

Encodings

MD5:

020a54126ac687fc3be2ffe0bd7e950c

SHA1:

c12a2fd1982231a6f417cf04e99babf76dd19f2b

Base64:

5byB