Unicode Finder

"掖" U+6396(CJK UNIFIED IDEOGRAPH-6396)

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

Programming

C
\u6396
JavaScript
\u6396
Java
\u6396
Json
\u6396
Python
\u6396
Perl
\x{6396}
PHP
\x{6396}
Ruby
\u{6396}
Rust
\u{6396}
Go
\u6396

Web

CSS
\006396
HtmlDecimal
掖
HtmlHexadecimal
掖
Url
%E6%8E%96

Code

MD5
14f68c6b7cda9f5f5c995786cd27d57c
Sha1
c0a9c4512d90b482933507190c696384e09732e8
Base64
5o6W

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6396';
console.log(char);  // Output: 掖

Java:

char c = '\u6396';
System.out.println(c);  // Output: 掖

JSON:

{"text": "\u6396"}  // Value: 掖

Python:

char = '\u6396'
print(char)  # Output: 掖

Perl:

my $char = "\x{6396}";
print $char;  # Output: 掖

PHP:

$char = "\x{6396}";
echo $char;  // Output: 掖

Ruby:

char = "\u{6396}"
puts char  # Output: 掖

Rust:

let c = '\u{6396}';
println!("{}", c);  // Output: 掖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006396";  /* Display: 掖 */
}

HTML Decimal:

<p>HTML decimal: &#25494;</p>  <!-- Display: 掖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6396;</p>  <!-- Display: 掖 -->

URL Encoding:

// 掖 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%96

Encodings

MD5:

14f68c6b7cda9f5f5c995786cd27d57c

SHA1:

c0a9c4512d90b482933507190c696384e09732e8

Base64:

5o6W