Unicode Finder

"籲" U+7C72(CJK UNIFIED IDEOGRAPH-7C72)

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

Programming

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

Web

CSS
\007C72
HtmlDecimal
籲
HtmlHexadecimal
籲
Url
%E7%B1%B2

Code

MD5
79759efc77d3ff4cb0c65de49726c0f9
Sha1
4d879134658acf408f55f106face4599b5a6e376
Base64
57Gy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C72';
console.log(char);  // Output: 籲

Java:

char c = '\u7C72';
System.out.println(c);  // Output: 籲

JSON:

{"text": "\u7C72"}  // Value: 籲

Python:

char = '\u7C72'
print(char)  # Output: 籲

Perl:

my $char = "\x{7C72}";
print $char;  # Output: 籲

PHP:

$char = "\x{7C72}";
echo $char;  // Output: 籲

Ruby:

char = "\u{7C72}"
puts char  # Output: 籲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31858;</p>  <!-- Display: 籲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C72;</p>  <!-- Display: 籲 -->

URL Encoding:

// 籲 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%B2

Encodings

MD5:

79759efc77d3ff4cb0c65de49726c0f9

SHA1:

4d879134658acf408f55f106face4599b5a6e376

Base64:

57Gy