Unicode Finder

"锜" U+951C(CJK UNIFIED IDEOGRAPH-951C)

U+951C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-951C

Programming

C
\u951C
JavaScript
\u951C
Java
\u951C
Json
\u951C
Python
\u951C
Perl
\x{951C}
PHP
\x{951C}
Ruby
\u{951C}
Rust
\u{951C}
Go
\u951C

Web

CSS
\00951C
HtmlDecimal
锜
HtmlHexadecimal
锜
Url
%E9%94%9C

Code

MD5
aa74af0cfda023975f9a646ff45a97d8
Sha1
404836dba708a26a28149c9a24022f3fbacd1952
Base64
6ZSc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u951C';
console.log(char);  // Output: 锜

Java:

char c = '\u951C';
System.out.println(c);  // Output: 锜

JSON:

{"text": "\u951C"}  // Value: 锜

Python:

char = '\u951C'
print(char)  # Output: 锜

Perl:

my $char = "\x{951C}";
print $char;  # Output: 锜

PHP:

$char = "\x{951C}";
echo $char;  // Output: 锜

Ruby:

char = "\u{951C}"
puts char  # Output: 锜

Rust:

let c = '\u{951C}';
println!("{}", c);  // Output: 锜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00951C";  /* Display: 锜 */
}

HTML Decimal:

<p>HTML decimal: &#38172;</p>  <!-- Display: 锜 -->

HTML Hexadecimal:

<p>HTML hex: &#x951C;</p>  <!-- Display: 锜 -->

URL Encoding:

// 锜 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%9C

Encodings

MD5:

aa74af0cfda023975f9a646ff45a97d8

SHA1:

404836dba708a26a28149c9a24022f3fbacd1952

Base64:

6ZSc