Unicode Finder

"簩" U+7C29(CJK UNIFIED IDEOGRAPH-7C29)

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

Programming

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

Web

CSS
\007C29
HtmlDecimal
簩
HtmlHexadecimal
簩
Url
%E7%B0%A9

Code

MD5
f351da6e39871529acd8cc7aa1f7fbfe
Sha1
d6aa1392f61f95b5cca4d39eef49dcaf531eb9b2
Base64
57Cp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C29';
console.log(char);  // Output: 簩

Java:

char c = '\u7C29';
System.out.println(c);  // Output: 簩

JSON:

{"text": "\u7C29"}  // Value: 簩

Python:

char = '\u7C29'
print(char)  # Output: 簩

Perl:

my $char = "\x{7C29}";
print $char;  # Output: 簩

PHP:

$char = "\x{7C29}";
echo $char;  // Output: 簩

Ruby:

char = "\u{7C29}"
puts char  # Output: 簩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31785;</p>  <!-- Display: 簩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C29;</p>  <!-- Display: 簩 -->

URL Encoding:

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

Encodings

MD5:

f351da6e39871529acd8cc7aa1f7fbfe

SHA1:

d6aa1392f61f95b5cca4d39eef49dcaf531eb9b2

Base64:

57Cp