Unicode Finder

"県" U+770C(CJK UNIFIED IDEOGRAPH-770C)

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

Programming

C
\u770C
JavaScript
\u770C
Java
\u770C
Json
\u770C
Python
\u770C
Perl
\x{770C}
PHP
\x{770C}
Ruby
\u{770C}
Rust
\u{770C}
Go
\u770C

Web

CSS
\00770C
HtmlDecimal
県
HtmlHexadecimal
県
Url
%E7%9C%8C

Code

MD5
3379515d82cb6281db086c23d6d15f15
Sha1
7800f7c4e48fed909a493f29b96b26c46a6b9a76
Base64
55yM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u770C';
console.log(char);  // Output: 県

Java:

char c = '\u770C';
System.out.println(c);  // Output: 県

JSON:

{"text": "\u770C"}  // Value: 県

Python:

char = '\u770C'
print(char)  # Output: 県

Perl:

my $char = "\x{770C}";
print $char;  # Output: 県

PHP:

$char = "\x{770C}";
echo $char;  // Output: 県

Ruby:

char = "\u{770C}"
puts char  # Output: 県

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30476;</p>  <!-- Display: 県 -->

HTML Hexadecimal:

<p>HTML hex: &#x770C;</p>  <!-- Display: 県 -->

URL Encoding:

// 県 URL encoding
https://unicodefinder.com/search.php?query=%E7%9C%8C

Encodings

MD5:

3379515d82cb6281db086c23d6d15f15

SHA1:

7800f7c4e48fed909a493f29b96b26c46a6b9a76

Base64:

55yM