Unicode Finder

"植" U+690D(CJK UNIFIED IDEOGRAPH-690D)

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

Programming

C
\u690D
JavaScript
\u690D
Java
\u690D
Json
\u690D
Python
\u690D
Perl
\x{690D}
PHP
\x{690D}
Ruby
\u{690D}
Rust
\u{690D}
Go
\u690D

Web

CSS
\00690D
HtmlDecimal
植
HtmlHexadecimal
植
Url
%E6%A4%8D

Code

MD5
16c2ef90783d8cc0c35d4f3173303676
Sha1
9040cba82a5a8cdfcf55fe00ae21db3feeee1dab
Base64
5qSN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u690D';
console.log(char);  // Output: 植

Java:

char c = '\u690D';
System.out.println(c);  // Output: 植

JSON:

{"text": "\u690D"}  // Value: 植

Python:

char = '\u690D'
print(char)  # Output: 植

Perl:

my $char = "\x{690D}";
print $char;  # Output: 植

PHP:

$char = "\x{690D}";
echo $char;  // Output: 植

Ruby:

char = "\u{690D}"
puts char  # Output: 植

Rust:

let c = '\u{690D}';
println!("{}", c);  // Output: 植

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00690D";  /* Display: 植 */
}

HTML Decimal:

<p>HTML decimal: &#26893;</p>  <!-- Display: 植 -->

HTML Hexadecimal:

<p>HTML hex: &#x690D;</p>  <!-- Display: 植 -->

URL Encoding:

// 植 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%8D

Encodings

MD5:

16c2ef90783d8cc0c35d4f3173303676

SHA1:

9040cba82a5a8cdfcf55fe00ae21db3feeee1dab

Base64:

5qSN