Unicode Finder

"柰" U+67F0(CJK UNIFIED IDEOGRAPH-67F0)

U+67F0
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-67F0

Programming

C
\u67F0
JavaScript
\u67F0
Java
\u67F0
Json
\u67F0
Python
\u67F0
Perl
\x{67F0}
PHP
\x{67F0}
Ruby
\u{67F0}
Rust
\u{67F0}
Go
\u67F0

Web

CSS
\0067F0
HtmlDecimal
柰
HtmlHexadecimal
柰
Url
%E6%9F%B0

Code

MD5
251944d2f79832dac2cab9434c080ac2
Sha1
c48df01d6568ed16475c3fe9bf56ea7c319ed627
Base64
5p+w

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67F0';
console.log(char);  // Output: 柰

Java:

char c = '\u67F0';
System.out.println(c);  // Output: 柰

JSON:

{"text": "\u67F0"}  // Value: 柰

Python:

char = '\u67F0'
print(char)  # Output: 柰

Perl:

my $char = "\x{67F0}";
print $char;  # Output: 柰

PHP:

$char = "\x{67F0}";
echo $char;  // Output: 柰

Ruby:

char = "\u{67F0}"
puts char  # Output: 柰

Rust:

let c = '\u{67F0}';
println!("{}", c);  // Output: 柰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067F0";  /* Display: 柰 */
}

HTML Decimal:

<p>HTML decimal: &#26608;</p>  <!-- Display: 柰 -->

HTML Hexadecimal:

<p>HTML hex: &#x67F0;</p>  <!-- Display: 柰 -->

URL Encoding:

// 柰 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%B0

Encodings

MD5:

251944d2f79832dac2cab9434c080ac2

SHA1:

c48df01d6568ed16475c3fe9bf56ea7c319ed627

Base64:

5p+w