Unicode Finder

"菭" U+83ED(CJK UNIFIED IDEOGRAPH-83ED)

U+83ED
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-83ED

Programming

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

Web

CSS
\0083ED
HtmlDecimal
菭
HtmlHexadecimal
菭
Url
%E8%8F%AD

Code

MD5
2090bff17360f20c390509b955a04bf4
Sha1
cff1166d4810997b0f04b88fcfa361456bcd79c1
Base64
6I+t

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83ED';
console.log(char);  // Output: 菭

Java:

char c = '\u83ED';
System.out.println(c);  // Output: 菭

JSON:

{"text": "\u83ED"}  // Value: 菭

Python:

char = '\u83ED'
print(char)  # Output: 菭

Perl:

my $char = "\x{83ED}";
print $char;  # Output: 菭

PHP:

$char = "\x{83ED}";
echo $char;  // Output: 菭

Ruby:

char = "\u{83ED}"
puts char  # Output: 菭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33773;</p>  <!-- Display: 菭 -->

HTML Hexadecimal:

<p>HTML hex: &#x83ED;</p>  <!-- Display: 菭 -->

URL Encoding:

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

Encodings

MD5:

2090bff17360f20c390509b955a04bf4

SHA1:

cff1166d4810997b0f04b88fcfa361456bcd79c1

Base64:

6I+t