Unicode Finder

"菿" U+83FF(CJK UNIFIED IDEOGRAPH-83FF)

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

Programming

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

Web

CSS
\0083FF
HtmlDecimal
菿
HtmlHexadecimal
菿
Url
%E8%8F%BF

Code

MD5
f94d539d390e9a57b5603e6a052ee247
Sha1
9452df00e5b8c2c38d9724e4a924bdd38003a536
Base64
6I+/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83FF';
console.log(char);  // Output: 菿

Java:

char c = '\u83FF';
System.out.println(c);  // Output: 菿

JSON:

{"text": "\u83FF"}  // Value: 菿

Python:

char = '\u83FF'
print(char)  # Output: 菿

Perl:

my $char = "\x{83FF}";
print $char;  # Output: 菿

PHP:

$char = "\x{83FF}";
echo $char;  // Output: 菿

Ruby:

char = "\u{83FF}"
puts char  # Output: 菿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33791;</p>  <!-- Display: 菿 -->

HTML Hexadecimal:

<p>HTML hex: &#x83FF;</p>  <!-- Display: 菿 -->

URL Encoding:

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

Encodings

MD5:

f94d539d390e9a57b5603e6a052ee247

SHA1:

9452df00e5b8c2c38d9724e4a924bdd38003a536

Base64:

6I+/