Unicode Finder

"臉" U+81C9(CJK UNIFIED IDEOGRAPH-81C9)

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

Programming

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

Web

CSS
\0081C9
HtmlDecimal
臉
HtmlHexadecimal
臉
Url
%E8%87%89

Code

MD5
248cc7e0192e88b95e3db4186f09393e
Sha1
7451fc33248faa8c0e05a2c16797071155e49429
Base64
6IeJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81C9';
console.log(char);  // Output: 臉

Java:

char c = '\u81C9';
System.out.println(c);  // Output: 臉

JSON:

{"text": "\u81C9"}  // Value: 臉

Python:

char = '\u81C9'
print(char)  # Output: 臉

Perl:

my $char = "\x{81C9}";
print $char;  # Output: 臉

PHP:

$char = "\x{81C9}";
echo $char;  // Output: 臉

Ruby:

char = "\u{81C9}"
puts char  # Output: 臉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33225;</p>  <!-- Display: 臉 -->

HTML Hexadecimal:

<p>HTML hex: &#x81C9;</p>  <!-- Display: 臉 -->

URL Encoding:

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

Encodings

MD5:

248cc7e0192e88b95e3db4186f09393e

SHA1:

7451fc33248faa8c0e05a2c16797071155e49429

Base64:

6IeJ