Unicode Finder

"透" U+900F(CJK UNIFIED IDEOGRAPH-900F)

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

Programming

C
\u900F
JavaScript
\u900F
Java
\u900F
Json
\u900F
Python
\u900F
Perl
\x{900F}
PHP
\x{900F}
Ruby
\u{900F}
Rust
\u{900F}
Go
\u900F

Web

CSS
\00900F
HtmlDecimal
透
HtmlHexadecimal
透
Url
%E9%80%8F

Code

MD5
251a6d19c5be0985581101228b30d37c
Sha1
78a0512ec7aabde6e20b2691f3311935836f14eb
Base64
6YCP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u900F';
console.log(char);  // Output: 透

Java:

char c = '\u900F';
System.out.println(c);  // Output: 透

JSON:

{"text": "\u900F"}  // Value: 透

Python:

char = '\u900F'
print(char)  # Output: 透

Perl:

my $char = "\x{900F}";
print $char;  # Output: 透

PHP:

$char = "\x{900F}";
echo $char;  // Output: 透

Ruby:

char = "\u{900F}"
puts char  # Output: 透

Rust:

let c = '\u{900F}';
println!("{}", c);  // Output: 透

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00900F";  /* Display: 透 */
}

HTML Decimal:

<p>HTML decimal: &#36879;</p>  <!-- Display: 透 -->

HTML Hexadecimal:

<p>HTML hex: &#x900F;</p>  <!-- Display: 透 -->

URL Encoding:

// 透 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%8F

Encodings

MD5:

251a6d19c5be0985581101228b30d37c

SHA1:

78a0512ec7aabde6e20b2691f3311935836f14eb

Base64:

6YCP