Unicode Finder

"纭" U+7EAD(CJK UNIFIED IDEOGRAPH-7EAD)

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

Programming

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

Web

CSS
\007EAD
HtmlDecimal
纭
HtmlHexadecimal
纭
Url
%E7%BA%AD

Code

MD5
3248f1f9df140ffa115702d953e70354
Sha1
40136c671a584e3d77c7578d1853e365b84d0a8b
Base64
57qt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7EAD';
console.log(char);  // Output: 纭

Java:

char c = '\u7EAD';
System.out.println(c);  // Output: 纭

JSON:

{"text": "\u7EAD"}  // Value: 纭

Python:

char = '\u7EAD'
print(char)  # Output: 纭

Perl:

my $char = "\x{7EAD}";
print $char;  # Output: 纭

PHP:

$char = "\x{7EAD}";
echo $char;  // Output: 纭

Ruby:

char = "\u{7EAD}"
puts char  # Output: 纭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32429;</p>  <!-- Display: 纭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EAD;</p>  <!-- Display: 纭 -->

URL Encoding:

// 纭 URL encoding
https://unicodefinder.com/search.php?query=%E7%BA%AD

Encodings

MD5:

3248f1f9df140ffa115702d953e70354

SHA1:

40136c671a584e3d77c7578d1853e365b84d0a8b

Base64:

57qt