Unicode Finder

"逳" U+9033(CJK UNIFIED IDEOGRAPH-9033)

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

Programming

C
\u9033
JavaScript
\u9033
Java
\u9033
Json
\u9033
Python
\u9033
Perl
\x{9033}
PHP
\x{9033}
Ruby
\u{9033}
Rust
\u{9033}
Go
\u9033

Web

CSS
\009033
HtmlDecimal
逳
HtmlHexadecimal
逳
Url
%E9%80%B3

Code

MD5
c3c5012773a12ea6557032041f90f246
Sha1
b6a375c808ceea679ec6b141246f9b9d46da969d
Base64
6YCz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9033';
console.log(char);  // Output: 逳

Java:

char c = '\u9033';
System.out.println(c);  // Output: 逳

JSON:

{"text": "\u9033"}  // Value: 逳

Python:

char = '\u9033'
print(char)  # Output: 逳

Perl:

my $char = "\x{9033}";
print $char;  # Output: 逳

PHP:

$char = "\x{9033}";
echo $char;  // Output: 逳

Ruby:

char = "\u{9033}"
puts char  # Output: 逳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009033";  /* Display: 逳 */
}

HTML Decimal:

<p>HTML decimal: &#36915;</p>  <!-- Display: 逳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9033;</p>  <!-- Display: 逳 -->

URL Encoding:

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

Encodings

MD5:

c3c5012773a12ea6557032041f90f246

SHA1:

b6a375c808ceea679ec6b141246f9b9d46da969d

Base64:

6YCz