Unicode Finder

"碜" U+789C(CJK UNIFIED IDEOGRAPH-789C)

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

Programming

C
\u789C
JavaScript
\u789C
Java
\u789C
Json
\u789C
Python
\u789C
Perl
\x{789C}
PHP
\x{789C}
Ruby
\u{789C}
Rust
\u{789C}
Go
\u789C

Web

CSS
\00789C
HtmlDecimal
碜
HtmlHexadecimal
碜
Url
%E7%A2%9C

Code

MD5
c9e2b1df36abc45e4b7ae93daf60c3af
Sha1
99f063fc7158b447dd5a7c32a4bda973f4dbe0f1
Base64
56Kc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u789C';
console.log(char);  // Output: 碜

Java:

char c = '\u789C';
System.out.println(c);  // Output: 碜

JSON:

{"text": "\u789C"}  // Value: 碜

Python:

char = '\u789C'
print(char)  # Output: 碜

Perl:

my $char = "\x{789C}";
print $char;  # Output: 碜

PHP:

$char = "\x{789C}";
echo $char;  // Output: 碜

Ruby:

char = "\u{789C}"
puts char  # Output: 碜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30876;</p>  <!-- Display: 碜 -->

HTML Hexadecimal:

<p>HTML hex: &#x789C;</p>  <!-- Display: 碜 -->

URL Encoding:

// 碜 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%9C

Encodings

MD5:

c9e2b1df36abc45e4b7ae93daf60c3af

SHA1:

99f063fc7158b447dd5a7c32a4bda973f4dbe0f1

Base64:

56Kc