Unicode Finder

"瀬" U+702C(CJK UNIFIED IDEOGRAPH-702C)

U+702C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-702C

Programming

C
\u702C
JavaScript
\u702C
Java
\u702C
Json
\u702C
Python
\u702C
Perl
\x{702C}
PHP
\x{702C}
Ruby
\u{702C}
Rust
\u{702C}
Go
\u702C

Web

CSS
\00702C
HtmlDecimal
瀬
HtmlHexadecimal
瀬
Url
%E7%80%AC

Code

MD5
eadf6f23b8c9f84df572f6f7688bfcde
Sha1
1c04de7c664fb52e0cf1aad86a2d92173fcd3cb5
Base64
54Cs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u702C';
console.log(char);  // Output: 瀬

Java:

char c = '\u702C';
System.out.println(c);  // Output: 瀬

JSON:

{"text": "\u702C"}  // Value: 瀬

Python:

char = '\u702C'
print(char)  # Output: 瀬

Perl:

my $char = "\x{702C}";
print $char;  # Output: 瀬

PHP:

$char = "\x{702C}";
echo $char;  // Output: 瀬

Ruby:

char = "\u{702C}"
puts char  # Output: 瀬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28716;</p>  <!-- Display: 瀬 -->

HTML Hexadecimal:

<p>HTML hex: &#x702C;</p>  <!-- Display: 瀬 -->

URL Encoding:

// 瀬 URL encoding
https://unicodefinder.com/search.php?query=%E7%80%AC

Encodings

MD5:

eadf6f23b8c9f84df572f6f7688bfcde

SHA1:

1c04de7c664fb52e0cf1aad86a2d92173fcd3cb5

Base64:

54Cs