Unicode Finder

"鈟" U+921F(CJK UNIFIED IDEOGRAPH-921F)

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

Programming

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

Web

CSS
\00921F
HtmlDecimal
鈟
HtmlHexadecimal
鈟
Url
%E9%88%9F

Code

MD5
629109545facd10347dfac72ebdfa92b
Sha1
d635685e30238bd1b415b2ebae6ddc51528d26d1
Base64
6Yif

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u921F';
console.log(char);  // Output: 鈟

Java:

char c = '\u921F';
System.out.println(c);  // Output: 鈟

JSON:

{"text": "\u921F"}  // Value: 鈟

Python:

char = '\u921F'
print(char)  # Output: 鈟

Perl:

my $char = "\x{921F}";
print $char;  # Output: 鈟

PHP:

$char = "\x{921F}";
echo $char;  // Output: 鈟

Ruby:

char = "\u{921F}"
puts char  # Output: 鈟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37407;</p>  <!-- Display: 鈟 -->

HTML Hexadecimal:

<p>HTML hex: &#x921F;</p>  <!-- Display: 鈟 -->

URL Encoding:

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

Encodings

MD5:

629109545facd10347dfac72ebdfa92b

SHA1:

d635685e30238bd1b415b2ebae6ddc51528d26d1

Base64:

6Yif