Unicode Finder

"簮" U+7C2E(CJK UNIFIED IDEOGRAPH-7C2E)

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

Programming

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

Web

CSS
\007C2E
HtmlDecimal
簮
HtmlHexadecimal
簮
Url
%E7%B0%AE

Code

MD5
b22e50db47073e4572537ed54dc94d9b
Sha1
4859886de0e9a6d4b0cdd7d45d958688f433af24
Base64
57Cu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C2E';
console.log(char);  // Output: 簮

Java:

char c = '\u7C2E';
System.out.println(c);  // Output: 簮

JSON:

{"text": "\u7C2E"}  // Value: 簮

Python:

char = '\u7C2E'
print(char)  # Output: 簮

Perl:

my $char = "\x{7C2E}";
print $char;  # Output: 簮

PHP:

$char = "\x{7C2E}";
echo $char;  // Output: 簮

Ruby:

char = "\u{7C2E}"
puts char  # Output: 簮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31790;</p>  <!-- Display: 簮 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C2E;</p>  <!-- Display: 簮 -->

URL Encoding:

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

Encodings

MD5:

b22e50db47073e4572537ed54dc94d9b

SHA1:

4859886de0e9a6d4b0cdd7d45d958688f433af24

Base64:

57Cu