Unicode Finder

"臟" U+81DF(CJK UNIFIED IDEOGRAPH-81DF)

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

Programming

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

Web

CSS
\0081DF
HtmlDecimal
臟
HtmlHexadecimal
臟
Url
%E8%87%9F

Code

MD5
3e0c1ce98801067009d44cc85d2d96df
Sha1
56f25005d20820b3f40470cb1a7e5b6fe5a0f69d
Base64
6Ief

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81DF';
console.log(char);  // Output: 臟

Java:

char c = '\u81DF';
System.out.println(c);  // Output: 臟

JSON:

{"text": "\u81DF"}  // Value: 臟

Python:

char = '\u81DF'
print(char)  # Output: 臟

Perl:

my $char = "\x{81DF}";
print $char;  # Output: 臟

PHP:

$char = "\x{81DF}";
echo $char;  // Output: 臟

Ruby:

char = "\u{81DF}"
puts char  # Output: 臟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33247;</p>  <!-- Display: 臟 -->

HTML Hexadecimal:

<p>HTML hex: &#x81DF;</p>  <!-- Display: 臟 -->

URL Encoding:

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

Encodings

MD5:

3e0c1ce98801067009d44cc85d2d96df

SHA1:

56f25005d20820b3f40470cb1a7e5b6fe5a0f69d

Base64:

6Ief