Unicode Finder

"碻" U+78BB(CJK UNIFIED IDEOGRAPH-78BB)

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

Programming

C
\u78BB
JavaScript
\u78BB
Java
\u78BB
Json
\u78BB
Python
\u78BB
Perl
\x{78BB}
PHP
\x{78BB}
Ruby
\u{78BB}
Rust
\u{78BB}
Go
\u78BB

Web

CSS
\0078BB
HtmlDecimal
碻
HtmlHexadecimal
碻
Url
%E7%A2%BB

Code

MD5
369cf6634e6640a8c3e2f05553400748
Sha1
27d97f199fd089f4590ba2a63cc746ae62ea1c77
Base64
56K7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u78BB';
console.log(char);  // Output: 碻

Java:

char c = '\u78BB';
System.out.println(c);  // Output: 碻

JSON:

{"text": "\u78BB"}  // Value: 碻

Python:

char = '\u78BB'
print(char)  # Output: 碻

Perl:

my $char = "\x{78BB}";
print $char;  # Output: 碻

PHP:

$char = "\x{78BB}";
echo $char;  // Output: 碻

Ruby:

char = "\u{78BB}"
puts char  # Output: 碻

Rust:

let c = '\u{78BB}';
println!("{}", c);  // Output: 碻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0078BB";  /* Display: 碻 */
}

HTML Decimal:

<p>HTML decimal: &#30907;</p>  <!-- Display: 碻 -->

HTML Hexadecimal:

<p>HTML hex: &#x78BB;</p>  <!-- Display: 碻 -->

URL Encoding:

// 碻 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%BB

Encodings

MD5:

369cf6634e6640a8c3e2f05553400748

SHA1:

27d97f199fd089f4590ba2a63cc746ae62ea1c77

Base64:

56K7