Unicode Finder

"菻" U+83FB(CJK UNIFIED IDEOGRAPH-83FB)

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

Programming

C
\u83FB
JavaScript
\u83FB
Java
\u83FB
Json
\u83FB
Python
\u83FB
Perl
\x{83FB}
PHP
\x{83FB}
Ruby
\u{83FB}
Rust
\u{83FB}
Go
\u83FB

Web

CSS
\0083FB
HtmlDecimal
菻
HtmlHexadecimal
菻
Url
%E8%8F%BB

Code

MD5
cc1ebad015e2c3a355b739fd1d7de214
Sha1
a2621a43de7e7d885de67fff3584c525de757f95
Base64
6I+7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u83FB';
console.log(char);  // Output: 菻

Java:

char c = '\u83FB';
System.out.println(c);  // Output: 菻

JSON:

{"text": "\u83FB"}  // Value: 菻

Python:

char = '\u83FB'
print(char)  # Output: 菻

Perl:

my $char = "\x{83FB}";
print $char;  # Output: 菻

PHP:

$char = "\x{83FB}";
echo $char;  // Output: 菻

Ruby:

char = "\u{83FB}"
puts char  # Output: 菻

Rust:

let c = '\u{83FB}';
println!("{}", c);  // Output: 菻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0083FB";  /* Display: 菻 */
}

HTML Decimal:

<p>HTML decimal: &#33787;</p>  <!-- Display: 菻 -->

HTML Hexadecimal:

<p>HTML hex: &#x83FB;</p>  <!-- Display: 菻 -->

URL Encoding:

// 菻 URL encoding
https://unicodefinder.com/search.php?query=%E8%8F%BB

Encodings

MD5:

cc1ebad015e2c3a355b739fd1d7de214

SHA1:

a2621a43de7e7d885de67fff3584c525de757f95

Base64:

6I+7