Unicode Finder

"臅" U+81C5(CJK UNIFIED IDEOGRAPH-81C5)

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

Programming

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

Web

CSS
\0081C5
HtmlDecimal
臅
HtmlHexadecimal
臅
Url
%E8%87%85

Code

MD5
2be66a7935516ff898ab64f31383fbda
Sha1
b9139bbdb2c1539c507790a4c9f66e3bf3fe1ea1
Base64
6IeF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81C5';
console.log(char);  // Output: 臅

Java:

char c = '\u81C5';
System.out.println(c);  // Output: 臅

JSON:

{"text": "\u81C5"}  // Value: 臅

Python:

char = '\u81C5'
print(char)  # Output: 臅

Perl:

my $char = "\x{81C5}";
print $char;  # Output: 臅

PHP:

$char = "\x{81C5}";
echo $char;  // Output: 臅

Ruby:

char = "\u{81C5}"
puts char  # Output: 臅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33221;</p>  <!-- Display: 臅 -->

HTML Hexadecimal:

<p>HTML hex: &#x81C5;</p>  <!-- Display: 臅 -->

URL Encoding:

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

Encodings

MD5:

2be66a7935516ff898ab64f31383fbda

SHA1:

b9139bbdb2c1539c507790a4c9f66e3bf3fe1ea1

Base64:

6IeF