Unicode Finder

"艼" U+827C(CJK UNIFIED IDEOGRAPH-827C)

U+827C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-827C

Programming

C
\u827C
JavaScript
\u827C
Java
\u827C
Json
\u827C
Python
\u827C
Perl
\x{827C}
PHP
\x{827C}
Ruby
\u{827C}
Rust
\u{827C}
Go
\u827C

Web

CSS
\00827C
HtmlDecimal
艼
HtmlHexadecimal
艼
Url
%E8%89%BC

Code

MD5
61173d3382a11d10351695c02c98342e
Sha1
b4f85e762dffc03ee57546f4da5a2e8b645653dc
Base64
6Im8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u827C';
console.log(char);  // Output: 艼

Java:

char c = '\u827C';
System.out.println(c);  // Output: 艼

JSON:

{"text": "\u827C"}  // Value: 艼

Python:

char = '\u827C'
print(char)  # Output: 艼

Perl:

my $char = "\x{827C}";
print $char;  # Output: 艼

PHP:

$char = "\x{827C}";
echo $char;  // Output: 艼

Ruby:

char = "\u{827C}"
puts char  # Output: 艼

Rust:

let c = '\u{827C}';
println!("{}", c);  // Output: 艼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00827C";  /* Display: 艼 */
}

HTML Decimal:

<p>HTML decimal: &#33404;</p>  <!-- Display: 艼 -->

HTML Hexadecimal:

<p>HTML hex: &#x827C;</p>  <!-- Display: 艼 -->

URL Encoding:

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

Encodings

MD5:

61173d3382a11d10351695c02c98342e

SHA1:

b4f85e762dffc03ee57546f4da5a2e8b645653dc

Base64:

6Im8