Unicode Finder

"頳" U+9833(CJK UNIFIED IDEOGRAPH-9833)

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

Programming

C
\u9833
JavaScript
\u9833
Java
\u9833
Json
\u9833
Python
\u9833
Perl
\x{9833}
PHP
\x{9833}
Ruby
\u{9833}
Rust
\u{9833}
Go
\u9833

Web

CSS
\009833
HtmlDecimal
頳
HtmlHexadecimal
頳
Url
%E9%A0%B3

Code

MD5
ad1dadb9cad0d2be30eb944937be9674
Sha1
1b4c67c4fe4893dc56de63849701095c0f2fc53c
Base64
6aCz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9833';
console.log(char);  // Output: 頳

Java:

char c = '\u9833';
System.out.println(c);  // Output: 頳

JSON:

{"text": "\u9833"}  // Value: 頳

Python:

char = '\u9833'
print(char)  # Output: 頳

Perl:

my $char = "\x{9833}";
print $char;  # Output: 頳

PHP:

$char = "\x{9833}";
echo $char;  // Output: 頳

Ruby:

char = "\u{9833}"
puts char  # Output: 頳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009833";  /* Display: 頳 */
}

HTML Decimal:

<p>HTML decimal: &#38963;</p>  <!-- Display: 頳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9833;</p>  <!-- Display: 頳 -->

URL Encoding:

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

Encodings

MD5:

ad1dadb9cad0d2be30eb944937be9674

SHA1:

1b4c67c4fe4893dc56de63849701095c0f2fc53c

Base64:

6aCz