Unicode Finder

"罧" U+7F67(CJK UNIFIED IDEOGRAPH-7F67)

U+7F67
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7F67

Programming

C
\u7F67
JavaScript
\u7F67
Java
\u7F67
Json
\u7F67
Python
\u7F67
Perl
\x{7F67}
PHP
\x{7F67}
Ruby
\u{7F67}
Rust
\u{7F67}
Go
\u7F67

Web

CSS
\007F67
HtmlDecimal
罧
HtmlHexadecimal
罧
Url
%E7%BD%A7

Code

MD5
b96e4e1f0439245ea6bdd2feab843d29
Sha1
176c09af2025ab2b419e16d5e1633e5187eff41b
Base64
572n

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F67';
console.log(char);  // Output: 罧

Java:

char c = '\u7F67';
System.out.println(c);  // Output: 罧

JSON:

{"text": "\u7F67"}  // Value: 罧

Python:

char = '\u7F67'
print(char)  # Output: 罧

Perl:

my $char = "\x{7F67}";
print $char;  # Output: 罧

PHP:

$char = "\x{7F67}";
echo $char;  // Output: 罧

Ruby:

char = "\u{7F67}"
puts char  # Output: 罧

Rust:

let c = '\u{7F67}';
println!("{}", c);  // Output: 罧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F67";  /* Display: 罧 */
}

HTML Decimal:

<p>HTML decimal: &#32615;</p>  <!-- Display: 罧 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F67;</p>  <!-- Display: 罧 -->

URL Encoding:

// 罧 URL encoding
https://unicodefinder.com/search.php?query=%E7%BD%A7

Encodings

MD5:

b96e4e1f0439245ea6bdd2feab843d29

SHA1:

176c09af2025ab2b419e16d5e1633e5187eff41b

Base64:

572n