Unicode Finder

"簄" U+7C04(CJK UNIFIED IDEOGRAPH-7C04)

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

Programming

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

Web

CSS
\007C04
HtmlDecimal
簄
HtmlHexadecimal
簄
Url
%E7%B0%84

Code

MD5
aa98fa07b652c06fbea9c326aa7a4e3d
Sha1
042f333b4e8e19de7a7be61e88f5e1f265156422
Base64
57CE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C04';
console.log(char);  // Output: 簄

Java:

char c = '\u7C04';
System.out.println(c);  // Output: 簄

JSON:

{"text": "\u7C04"}  // Value: 簄

Python:

char = '\u7C04'
print(char)  # Output: 簄

Perl:

my $char = "\x{7C04}";
print $char;  # Output: 簄

PHP:

$char = "\x{7C04}";
echo $char;  // Output: 簄

Ruby:

char = "\u{7C04}"
puts char  # Output: 簄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31748;</p>  <!-- Display: 簄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C04;</p>  <!-- Display: 簄 -->

URL Encoding:

// 簄 URL encoding
https://unicodefinder.com/search.php?query=%E7%B0%84

Encodings

MD5:

aa98fa07b652c06fbea9c326aa7a4e3d

SHA1:

042f333b4e8e19de7a7be61e88f5e1f265156422

Base64:

57CE