Unicode Finder

"簱" U+7C31(CJK UNIFIED IDEOGRAPH-7C31)

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

Programming

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

Web

CSS
\007C31
HtmlDecimal
簱
HtmlHexadecimal
簱
Url
%E7%B0%B1

Code

MD5
a4a555c35112dd587f66d4dd975bacca
Sha1
0f44024f9110ad4ea8d5919ec8fdeb7f9c447290
Base64
57Cx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C31';
console.log(char);  // Output: 簱

Java:

char c = '\u7C31';
System.out.println(c);  // Output: 簱

JSON:

{"text": "\u7C31"}  // Value: 簱

Python:

char = '\u7C31'
print(char)  # Output: 簱

Perl:

my $char = "\x{7C31}";
print $char;  # Output: 簱

PHP:

$char = "\x{7C31}";
echo $char;  // Output: 簱

Ruby:

char = "\u{7C31}"
puts char  # Output: 簱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31793;</p>  <!-- Display: 簱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C31;</p>  <!-- Display: 簱 -->

URL Encoding:

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

Encodings

MD5:

a4a555c35112dd587f66d4dd975bacca

SHA1:

0f44024f9110ad4ea8d5919ec8fdeb7f9c447290

Base64:

57Cx