Unicode Finder

"碸" U+78B8(CJK UNIFIED IDEOGRAPH-78B8)

U+78B8
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-78B8

Programming

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

Web

CSS
\0078B8
HtmlDecimal
碸
HtmlHexadecimal
碸
Url
%E7%A2%B8

Code

MD5
0069872ee67c5cda515e9133f430848a
Sha1
3aa3b67c33867c96758d655d039365bba9e2bed0
Base64
56K4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78B8';
console.log(char);  // Output: 碸

Java:

char c = '\u78B8';
System.out.println(c);  // Output: 碸

JSON:

{"text": "\u78B8"}  // Value: 碸

Python:

char = '\u78B8'
print(char)  # Output: 碸

Perl:

my $char = "\x{78B8}";
print $char;  # Output: 碸

PHP:

$char = "\x{78B8}";
echo $char;  // Output: 碸

Ruby:

char = "\u{78B8}"
puts char  # Output: 碸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30904;</p>  <!-- Display: 碸 -->

HTML Hexadecimal:

<p>HTML hex: &#x78B8;</p>  <!-- Display: 碸 -->

URL Encoding:

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

Encodings

MD5:

0069872ee67c5cda515e9133f430848a

SHA1:

3aa3b67c33867c96758d655d039365bba9e2bed0

Base64:

56K4