Unicode Finder

"菟" U+83DF(CJK UNIFIED IDEOGRAPH-83DF)

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

Programming

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

Web

CSS
\0083DF
HtmlDecimal
菟
HtmlHexadecimal
菟
Url
%E8%8F%9F

Code

MD5
d9de6417eaffa392bc24e3d95ca3ce54
Sha1
cc89e2bcd550f12e230e958e8911489837027f66
Base64
6I+f

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83DF';
console.log(char);  // Output: 菟

Java:

char c = '\u83DF';
System.out.println(c);  // Output: 菟

JSON:

{"text": "\u83DF"}  // Value: 菟

Python:

char = '\u83DF'
print(char)  # Output: 菟

Perl:

my $char = "\x{83DF}";
print $char;  # Output: 菟

PHP:

$char = "\x{83DF}";
echo $char;  // Output: 菟

Ruby:

char = "\u{83DF}"
puts char  # Output: 菟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33759;</p>  <!-- Display: 菟 -->

HTML Hexadecimal:

<p>HTML hex: &#x83DF;</p>  <!-- Display: 菟 -->

URL Encoding:

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

Encodings

MD5:

d9de6417eaffa392bc24e3d95ca3ce54

SHA1:

cc89e2bcd550f12e230e958e8911489837027f66

Base64:

6I+f