Unicode Finder

"即" U+5373(CJK UNIFIED IDEOGRAPH-5373)

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

Programming

C
\u5373
JavaScript
\u5373
Java
\u5373
Json
\u5373
Python
\u5373
Perl
\x{5373}
PHP
\x{5373}
Ruby
\u{5373}
Rust
\u{5373}
Go
\u5373

Web

CSS
\005373
HtmlDecimal
即
HtmlHexadecimal
即
Url
%E5%8D%B3

Code

MD5
906f038d482bbc1edfb4212b707db07d
Sha1
08d04eb3bfa1614697ad8050ea01487ad43e2dc5
Base64
5Y2z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5373';
console.log(char);  // Output: 即

Java:

char c = '\u5373';
System.out.println(c);  // Output: 即

JSON:

{"text": "\u5373"}  // Value: 即

Python:

char = '\u5373'
print(char)  # Output: 即

Perl:

my $char = "\x{5373}";
print $char;  # Output: 即

PHP:

$char = "\x{5373}";
echo $char;  // Output: 即

Ruby:

char = "\u{5373}"
puts char  # Output: 即

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005373";  /* Display: 即 */
}

HTML Decimal:

<p>HTML decimal: &#21363;</p>  <!-- Display: 即 -->

HTML Hexadecimal:

<p>HTML hex: &#x5373;</p>  <!-- Display: 即 -->

URL Encoding:

// 即 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%B3

Encodings

MD5:

906f038d482bbc1edfb4212b707db07d

SHA1:

08d04eb3bfa1614697ad8050ea01487ad43e2dc5

Base64:

5Y2z