Unicode Finder

"籨" U+7C68(CJK UNIFIED IDEOGRAPH-7C68)

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

Programming

C
\u7C68
JavaScript
\u7C68
Java
\u7C68
Json
\u7C68
Python
\u7C68
Perl
\x{7C68}
PHP
\x{7C68}
Ruby
\u{7C68}
Rust
\u{7C68}
Go
\u7C68

Web

CSS
\007C68
HtmlDecimal
籨
HtmlHexadecimal
籨
Url
%E7%B1%A8

Code

MD5
cd517669fd00c44e316e60037c70e986
Sha1
37fd76722118e429f15fd0d5a40f3046b666453a
Base64
57Go

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C68';
console.log(char);  // Output: 籨

Java:

char c = '\u7C68';
System.out.println(c);  // Output: 籨

JSON:

{"text": "\u7C68"}  // Value: 籨

Python:

char = '\u7C68'
print(char)  # Output: 籨

Perl:

my $char = "\x{7C68}";
print $char;  # Output: 籨

PHP:

$char = "\x{7C68}";
echo $char;  // Output: 籨

Ruby:

char = "\u{7C68}"
puts char  # Output: 籨

Rust:

let c = '\u{7C68}';
println!("{}", c);  // Output: 籨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C68";  /* Display: 籨 */
}

HTML Decimal:

<p>HTML decimal: &#31848;</p>  <!-- Display: 籨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C68;</p>  <!-- Display: 籨 -->

URL Encoding:

// 籨 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%A8

Encodings

MD5:

cd517669fd00c44e316e60037c70e986

SHA1:

37fd76722118e429f15fd0d5a40f3046b666453a

Base64:

57Go