Unicode Finder

"菹" U+83F9(CJK UNIFIED IDEOGRAPH-83F9)

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

Programming

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

Web

CSS
\0083F9
HtmlDecimal
菹
HtmlHexadecimal
菹
Url
%E8%8F%B9

Code

MD5
6763a466ae825cffefb3aaef58ca71ec
Sha1
74fc33d6952942f5c31263208011b5df95e3c62d
Base64
6I+5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u83F9';
console.log(char);  // Output: 菹

Java:

char c = '\u83F9';
System.out.println(c);  // Output: 菹

JSON:

{"text": "\u83F9"}  // Value: 菹

Python:

char = '\u83F9'
print(char)  # Output: 菹

Perl:

my $char = "\x{83F9}";
print $char;  # Output: 菹

PHP:

$char = "\x{83F9}";
echo $char;  // Output: 菹

Ruby:

char = "\u{83F9}"
puts char  # Output: 菹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33785;</p>  <!-- Display: 菹 -->

HTML Hexadecimal:

<p>HTML hex: &#x83F9;</p>  <!-- Display: 菹 -->

URL Encoding:

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

Encodings

MD5:

6763a466ae825cffefb3aaef58ca71ec

SHA1:

74fc33d6952942f5c31263208011b5df95e3c62d

Base64:

6I+5