Unicode Finder

"逕" U+9015(CJK UNIFIED IDEOGRAPH-9015)

U+9015
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9015

Programming

C
\u9015
JavaScript
\u9015
Java
\u9015
Json
\u9015
Python
\u9015
Perl
\x{9015}
PHP
\x{9015}
Ruby
\u{9015}
Rust
\u{9015}
Go
\u9015

Web

CSS
\009015
HtmlDecimal
逕
HtmlHexadecimal
逕
Url
%E9%80%95

Code

MD5
262642db9abe32ba3b95b38f34af8d24
Sha1
b625f4e1f03b45d5588a6f19b549d7243638be86
Base64
6YCV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9015';
console.log(char);  // Output: 逕

Java:

char c = '\u9015';
System.out.println(c);  // Output: 逕

JSON:

{"text": "\u9015"}  // Value: 逕

Python:

char = '\u9015'
print(char)  # Output: 逕

Perl:

my $char = "\x{9015}";
print $char;  # Output: 逕

PHP:

$char = "\x{9015}";
echo $char;  // Output: 逕

Ruby:

char = "\u{9015}"
puts char  # Output: 逕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009015";  /* Display: 逕 */
}

HTML Decimal:

<p>HTML decimal: &#36885;</p>  <!-- Display: 逕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9015;</p>  <!-- Display: 逕 -->

URL Encoding:

// 逕 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%95

Encodings

MD5:

262642db9abe32ba3b95b38f34af8d24

SHA1:

b625f4e1f03b45d5588a6f19b549d7243638be86

Base64:

6YCV