Unicode Finder

"脧" U+8127(CJK UNIFIED IDEOGRAPH-8127)

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

Programming

C
\u8127
JavaScript
\u8127
Java
\u8127
Json
\u8127
Python
\u8127
Perl
\x{8127}
PHP
\x{8127}
Ruby
\u{8127}
Rust
\u{8127}
Go
\u8127

Web

CSS
\008127
HtmlDecimal
脧
HtmlHexadecimal
脧
Url
%E8%84%A7

Code

MD5
c274e91b6baae0003144e7e9d5b8e868
Sha1
31416788e7f2d9589306c69bf5c858939b433d59
Base64
6ISn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8127';
console.log(char);  // Output: 脧

Java:

char c = '\u8127';
System.out.println(c);  // Output: 脧

JSON:

{"text": "\u8127"}  // Value: 脧

Python:

char = '\u8127'
print(char)  # Output: 脧

Perl:

my $char = "\x{8127}";
print $char;  # Output: 脧

PHP:

$char = "\x{8127}";
echo $char;  // Output: 脧

Ruby:

char = "\u{8127}"
puts char  # Output: 脧

Rust:

let c = '\u{8127}';
println!("{}", c);  // Output: 脧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008127";  /* Display: 脧 */
}

HTML Decimal:

<p>HTML decimal: &#33063;</p>  <!-- Display: 脧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8127;</p>  <!-- Display: 脧 -->

URL Encoding:

// 脧 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%A7

Encodings

MD5:

c274e91b6baae0003144e7e9d5b8e868

SHA1:

31416788e7f2d9589306c69bf5c858939b433d59

Base64:

6ISn