Unicode Finder

"簿" U+7C3F(CJK UNIFIED IDEOGRAPH-7C3F)

簿
U+7C3F
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7C3F

Programming

C
\u7C3F
JavaScript
\u7C3F
Java
\u7C3F
Json
\u7C3F
Python
\u7C3F
Perl
\x{7C3F}
PHP
\x{7C3F}
Ruby
\u{7C3F}
Rust
\u{7C3F}
Go
\u7C3F

Web

CSS
\007C3F
HtmlDecimal
簿
HtmlHexadecimal
簿
Url
%E7%B0%BF

Code

MD5
04b46a77e1833cfce900d10a6429eeae
Sha1
09703483c08775d09f1ca2b212e32229c872232f
Base64
57C/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C3F';
console.log(char);  // Output: 簿

Java:

char c = '\u7C3F';
System.out.println(c);  // Output: 簿

JSON:

{"text": "\u7C3F"}  // Value: 簿

Python:

char = '\u7C3F'
print(char)  # Output: 簿

Perl:

my $char = "\x{7C3F}";
print $char;  # Output: 簿

PHP:

$char = "\x{7C3F}";
echo $char;  // Output: 簿

Ruby:

char = "\u{7C3F}"
puts char  # Output: 簿

Rust:

let c = '\u{7C3F}';
println!("{}", c);  // Output: 簿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C3F";  /* Display: 簿 */
}

HTML Decimal:

<p>HTML decimal: &#31807;</p>  <!-- Display: 簿 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C3F;</p>  <!-- Display: 簿 -->

URL Encoding:

// 簿 URL encoding
https://unicodefinder.com/search.php?query=%E7%B0%BF

Encodings

MD5:

04b46a77e1833cfce900d10a6429eeae

SHA1:

09703483c08775d09f1ca2b212e32229c872232f

Base64:

57C/