Unicode Finder

"臐" U+81D0(CJK UNIFIED IDEOGRAPH-81D0)

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

Programming

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

Web

CSS
\0081D0
HtmlDecimal
臐
HtmlHexadecimal
臐
Url
%E8%87%90

Code

MD5
1334db7e663ca5a8e47d3b0e36b9555a
Sha1
e69c74329f0e47db0ce03dcdfbebb0ec1248e8ea
Base64
6IeQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81D0';
console.log(char);  // Output: 臐

Java:

char c = '\u81D0';
System.out.println(c);  // Output: 臐

JSON:

{"text": "\u81D0"}  // Value: 臐

Python:

char = '\u81D0'
print(char)  # Output: 臐

Perl:

my $char = "\x{81D0}";
print $char;  # Output: 臐

PHP:

$char = "\x{81D0}";
echo $char;  // Output: 臐

Ruby:

char = "\u{81D0}"
puts char  # Output: 臐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33232;</p>  <!-- Display: 臐 -->

HTML Hexadecimal:

<p>HTML hex: &#x81D0;</p>  <!-- Display: 臐 -->

URL Encoding:

// 臐 URL encoding
https://unicodefinder.com/search.php?query=%E8%87%90

Encodings

MD5:

1334db7e663ca5a8e47d3b0e36b9555a

SHA1:

e69c74329f0e47db0ce03dcdfbebb0ec1248e8ea

Base64:

6IeQ