Unicode Finder

"速" U+901F(CJK UNIFIED IDEOGRAPH-901F)

U+901F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-901F

Programming

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

Web

CSS
\00901F
HtmlDecimal
速
HtmlHexadecimal
速
Url
%E9%80%9F

Code

MD5
4325df71731e219dcaf9f279cde5a0d8
Sha1
1775aeb5c171b9bada35274700e5cdeb6cc8784d
Base64
6YCf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u901F';
console.log(char);  // Output: 速

Java:

char c = '\u901F';
System.out.println(c);  // Output: 速

JSON:

{"text": "\u901F"}  // Value: 速

Python:

char = '\u901F'
print(char)  # Output: 速

Perl:

my $char = "\x{901F}";
print $char;  # Output: 速

PHP:

$char = "\x{901F}";
echo $char;  // Output: 速

Ruby:

char = "\u{901F}"
puts char  # Output: 速

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36895;</p>  <!-- Display: 速 -->

HTML Hexadecimal:

<p>HTML hex: &#x901F;</p>  <!-- Display: 速 -->

URL Encoding:

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

Encodings

MD5:

4325df71731e219dcaf9f279cde5a0d8

SHA1:

1775aeb5c171b9bada35274700e5cdeb6cc8784d

Base64:

6YCf