Unicode Finder

"校" U+6821(CJK UNIFIED IDEOGRAPH-6821)

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

Programming

C
\u6821
JavaScript
\u6821
Java
\u6821
Json
\u6821
Python
\u6821
Perl
\x{6821}
PHP
\x{6821}
Ruby
\u{6821}
Rust
\u{6821}
Go
\u6821

Web

CSS
\006821
HtmlDecimal
校
HtmlHexadecimal
校
Url
%E6%A0%A1

Code

MD5
750800b75db77f8f178b85d8bf8d2a2f
Sha1
5118ad88e3dbb527cf8fb0b2dc3919aa62637160
Base64
5qCh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6821';
console.log(char);  // Output: 校

Java:

char c = '\u6821';
System.out.println(c);  // Output: 校

JSON:

{"text": "\u6821"}  // Value: 校

Python:

char = '\u6821'
print(char)  # Output: 校

Perl:

my $char = "\x{6821}";
print $char;  # Output: 校

PHP:

$char = "\x{6821}";
echo $char;  // Output: 校

Ruby:

char = "\u{6821}"
puts char  # Output: 校

Rust:

let c = '\u{6821}';
println!("{}", c);  // Output: 校

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006821";  /* Display: 校 */
}

HTML Decimal:

<p>HTML decimal: &#26657;</p>  <!-- Display: 校 -->

HTML Hexadecimal:

<p>HTML hex: &#x6821;</p>  <!-- Display: 校 -->

URL Encoding:

// 校 URL encoding
https://unicodefinder.com/search.php?query=%E6%A0%A1

Encodings

MD5:

750800b75db77f8f178b85d8bf8d2a2f

SHA1:

5118ad88e3dbb527cf8fb0b2dc3919aa62637160

Base64:

5qCh