Unicode Finder

"簠" U+7C20(CJK UNIFIED IDEOGRAPH-7C20)

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

Programming

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

Web

CSS
\007C20
HtmlDecimal
簠
HtmlHexadecimal
簠
Url
%E7%B0%A0

Code

MD5
b25b99f8d429201234351cef3674d0b6
Sha1
f3a3df1926f2b07a1ed4a77079efef4344404e8f
Base64
57Cg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C20';
console.log(char);  // Output: 簠

Java:

char c = '\u7C20';
System.out.println(c);  // Output: 簠

JSON:

{"text": "\u7C20"}  // Value: 簠

Python:

char = '\u7C20'
print(char)  # Output: 簠

Perl:

my $char = "\x{7C20}";
print $char;  # Output: 簠

PHP:

$char = "\x{7C20}";
echo $char;  // Output: 簠

Ruby:

char = "\u{7C20}"
puts char  # Output: 簠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31776;</p>  <!-- Display: 簠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C20;</p>  <!-- Display: 簠 -->

URL Encoding:

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

Encodings

MD5:

b25b99f8d429201234351cef3674d0b6

SHA1:

f3a3df1926f2b07a1ed4a77079efef4344404e8f

Base64:

57Cg