Unicode Finder

"紟" U+7D1F(CJK UNIFIED IDEOGRAPH-7D1F)

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

Programming

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

Web

CSS
\007D1F
HtmlDecimal
紟
HtmlHexadecimal
紟
Url
%E7%B4%9F

Code

MD5
19a71ca89954a0a8dd68f5879f7c54a7
Sha1
8568a0a947c41f155fdfa77052df0a70c6a5b997
Base64
57Sf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D1F';
console.log(char);  // Output: 紟

Java:

char c = '\u7D1F';
System.out.println(c);  // Output: 紟

JSON:

{"text": "\u7D1F"}  // Value: 紟

Python:

char = '\u7D1F'
print(char)  # Output: 紟

Perl:

my $char = "\x{7D1F}";
print $char;  # Output: 紟

PHP:

$char = "\x{7D1F}";
echo $char;  // Output: 紟

Ruby:

char = "\u{7D1F}"
puts char  # Output: 紟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32031;</p>  <!-- Display: 紟 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D1F;</p>  <!-- Display: 紟 -->

URL Encoding:

// 紟 URL encoding
https://unicodefinder.com/search.php?query=%E7%B4%9F

Encodings

MD5:

19a71ca89954a0a8dd68f5879f7c54a7

SHA1:

8568a0a947c41f155fdfa77052df0a70c6a5b997

Base64:

57Sf