Unicode Finder

"椙" U+6919(CJK UNIFIED IDEOGRAPH-6919)

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

Programming

C
\u6919
JavaScript
\u6919
Java
\u6919
Json
\u6919
Python
\u6919
Perl
\x{6919}
PHP
\x{6919}
Ruby
\u{6919}
Rust
\u{6919}
Go
\u6919

Web

CSS
\006919
HtmlDecimal
椙
HtmlHexadecimal
椙
Url
%E6%A4%99

Code

MD5
b9369ec963bc55a6bd116f65a78ce358
Sha1
24b22f60b9a8772066cd884d43f9d263876ed0ed
Base64
5qSZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6919';
console.log(char);  // Output: 椙

Java:

char c = '\u6919';
System.out.println(c);  // Output: 椙

JSON:

{"text": "\u6919"}  // Value: 椙

Python:

char = '\u6919'
print(char)  # Output: 椙

Perl:

my $char = "\x{6919}";
print $char;  # Output: 椙

PHP:

$char = "\x{6919}";
echo $char;  // Output: 椙

Ruby:

char = "\u{6919}"
puts char  # Output: 椙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006919";  /* Display: 椙 */
}

HTML Decimal:

<p>HTML decimal: &#26905;</p>  <!-- Display: 椙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6919;</p>  <!-- Display: 椙 -->

URL Encoding:

// 椙 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%99

Encodings

MD5:

b9369ec963bc55a6bd116f65a78ce358

SHA1:

24b22f60b9a8772066cd884d43f9d263876ed0ed

Base64:

5qSZ