Unicode Finder

"碾" U+78BE(CJK UNIFIED IDEOGRAPH-78BE)

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

Programming

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

Web

CSS
\0078BE
HtmlDecimal
碾
HtmlHexadecimal
碾
Url
%E7%A2%BE

Code

MD5
8856c5df4e380fd8828109634b74b44f
Sha1
2df90844a23b050ef4998904bd68e4dcbf42887c
Base64
56K+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78BE';
console.log(char);  // Output: 碾

Java:

char c = '\u78BE';
System.out.println(c);  // Output: 碾

JSON:

{"text": "\u78BE"}  // Value: 碾

Python:

char = '\u78BE'
print(char)  # Output: 碾

Perl:

my $char = "\x{78BE}";
print $char;  # Output: 碾

PHP:

$char = "\x{78BE}";
echo $char;  // Output: 碾

Ruby:

char = "\u{78BE}"
puts char  # Output: 碾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30910;</p>  <!-- Display: 碾 -->

HTML Hexadecimal:

<p>HTML hex: &#x78BE;</p>  <!-- Display: 碾 -->

URL Encoding:

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

Encodings

MD5:

8856c5df4e380fd8828109634b74b44f

SHA1:

2df90844a23b050ef4998904bd68e4dcbf42887c

Base64:

56K+