Unicode Finder

"菷" U+83F7(CJK UNIFIED IDEOGRAPH-83F7)

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

Programming

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

Web

CSS
\0083F7
HtmlDecimal
菷
HtmlHexadecimal
菷
Url
%E8%8F%B7

Code

MD5
071f64efa0a04ee98a293d672bd79f21
Sha1
a2a6c697fce9ce4631d578086f36713b1750d2fb
Base64
6I+3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u83F7';
console.log(char);  // Output: 菷

Java:

char c = '\u83F7';
System.out.println(c);  // Output: 菷

JSON:

{"text": "\u83F7"}  // Value: 菷

Python:

char = '\u83F7'
print(char)  # Output: 菷

Perl:

my $char = "\x{83F7}";
print $char;  # Output: 菷

PHP:

$char = "\x{83F7}";
echo $char;  // Output: 菷

Ruby:

char = "\u{83F7}"
puts char  # Output: 菷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33783;</p>  <!-- Display: 菷 -->

HTML Hexadecimal:

<p>HTML hex: &#x83F7;</p>  <!-- Display: 菷 -->

URL Encoding:

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

Encodings

MD5:

071f64efa0a04ee98a293d672bd79f21

SHA1:

a2a6c697fce9ce4631d578086f36713b1750d2fb

Base64:

6I+3