Unicode Finder

"緒" U+7DD2(CJK UNIFIED IDEOGRAPH-7DD2)

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

Programming

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

Web

CSS
\007DD2
HtmlDecimal
緒
HtmlHexadecimal
緒
Url
%E7%B7%92

Code

MD5
57a4a4ab791cd5ed5166873759a29afb
Sha1
04b3e1394c8ae251cfa6f3b086232c69a86b8add
Base64
57eS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DD2';
console.log(char);  // Output: 緒

Java:

char c = '\u7DD2';
System.out.println(c);  // Output: 緒

JSON:

{"text": "\u7DD2"}  // Value: 緒

Python:

char = '\u7DD2'
print(char)  # Output: 緒

Perl:

my $char = "\x{7DD2}";
print $char;  # Output: 緒

PHP:

$char = "\x{7DD2}";
echo $char;  // Output: 緒

Ruby:

char = "\u{7DD2}"
puts char  # Output: 緒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32210;</p>  <!-- Display: 緒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DD2;</p>  <!-- Display: 緒 -->

URL Encoding:

// 緒 URL encoding
https://unicodefinder.com/search.php?query=%E7%B7%92

Encodings

MD5:

57a4a4ab791cd5ed5166873759a29afb

SHA1:

04b3e1394c8ae251cfa6f3b086232c69a86b8add

Base64:

57eS