Unicode Finder

"絠" U+7D60(CJK UNIFIED IDEOGRAPH-7D60)

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

Programming

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

Web

CSS
\007D60
HtmlDecimal
絠
HtmlHexadecimal
絠
Url
%E7%B5%A0

Code

MD5
277ddec932a1fc49dc46d63db5ba05b9
Sha1
1564a77f7d38a54e2403eab461e0cd491f6221fb
Base64
57Wg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D60';
console.log(char);  // Output: 絠

Java:

char c = '\u7D60';
System.out.println(c);  // Output: 絠

JSON:

{"text": "\u7D60"}  // Value: 絠

Python:

char = '\u7D60'
print(char)  # Output: 絠

Perl:

my $char = "\x{7D60}";
print $char;  # Output: 絠

PHP:

$char = "\x{7D60}";
echo $char;  // Output: 絠

Ruby:

char = "\u{7D60}"
puts char  # Output: 絠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32096;</p>  <!-- Display: 絠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D60;</p>  <!-- Display: 絠 -->

URL Encoding:

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

Encodings

MD5:

277ddec932a1fc49dc46d63db5ba05b9

SHA1:

1564a77f7d38a54e2403eab461e0cd491f6221fb

Base64:

57Wg