Unicode Finder

"舿" U+823F(CJK UNIFIED IDEOGRAPH-823F)

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

Programming

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

Web

CSS
\00823F
HtmlDecimal
舿
HtmlHexadecimal
舿
Url
%E8%88%BF

Code

MD5
bdb93461e8888d4e6f534775368391f9
Sha1
c6cddd72022c383a9aee274ae0faf35577960de2
Base64
6Ii/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u823F';
console.log(char);  // Output: 舿

Java:

char c = '\u823F';
System.out.println(c);  // Output: 舿

JSON:

{"text": "\u823F"}  // Value: 舿

Python:

char = '\u823F'
print(char)  # Output: 舿

Perl:

my $char = "\x{823F}";
print $char;  # Output: 舿

PHP:

$char = "\x{823F}";
echo $char;  // Output: 舿

Ruby:

char = "\u{823F}"
puts char  # Output: 舿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33343;</p>  <!-- Display: 舿 -->

HTML Hexadecimal:

<p>HTML hex: &#x823F;</p>  <!-- Display: 舿 -->

URL Encoding:

// 舿 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%BF

Encodings

MD5:

bdb93461e8888d4e6f534775368391f9

SHA1:

c6cddd72022c383a9aee274ae0faf35577960de2

Base64:

6Ii/